Changeset 45130 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jun 24, 2009, 6:32:26 PM (16 years ago)
Author:
[email protected]
Message:

2009-06-24 Zoltan Horvath <[email protected]>

Reviewed by Maciej Stachowiak.

Extend FastAllocBase.h with 'using WTF::FastAllocBase' to avoid

unnecessary WTF
usings.
Remove existing unnecessary WTF
usings.
  • interpreter/Interpreter.h:
  • profiler/CallIdentifier.h:
  • runtime/ScopeChain.h:
  • wtf/FastAllocBase.h:
Location:
trunk/JavaScriptCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r45128 r45130  
     12009-06-24  Zoltan Horvath  <[email protected]>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        Extend FastAllocBase.h with 'using WTF::FastAllocBase' to avoid
     6        unnecessary WTF:: usings.
     7        Remove existing unnecessary WTF:: usings.
     8
     9        * interpreter/Interpreter.h:
     10        * profiler/CallIdentifier.h:
     11        * runtime/ScopeChain.h:
     12        * wtf/FastAllocBase.h:
     13
    1142009-06-24  David Levin  <[email protected]>
    215
  • trunk/JavaScriptCore/interpreter/Interpreter.h

    r44418 r45130  
    6767    enum { MaxMainThreadReentryDepth = 256, MaxSecondaryThreadReentryDepth = 32 };
    6868
    69     class Interpreter : public WTF::FastAllocBase {
     69    class Interpreter : public FastAllocBase {
    7070        friend class JIT;
    7171        friend class CachedCall;
  • trunk/JavaScriptCore/profiler/CallIdentifier.h

    r44871 r45130  
    3333namespace JSC {
    3434
    35     struct CallIdentifier : public WTF::FastAllocBase {
     35    struct CallIdentifier : public FastAllocBase {
    3636        UString m_name;
    3737        UString m_url;
  • trunk/JavaScriptCore/runtime/ScopeChain.h

    r45076 r45130  
    3131    class ScopeChainIterator;
    3232   
    33     class ScopeChainNode : public WTF::FastAllocBase {
     33    class ScopeChainNode : public FastAllocBase {
    3434    public:
    3535        ScopeChainNode(ScopeChainNode* next, JSObject* object, JSGlobalData* globalData, JSObject* globalThis)
  • trunk/JavaScriptCore/wtf/FastAllocBase.h

    r44163 r45130  
    398398} // namespace WTF
    399399
     400// Using WTF::FastAllocBase to avoid using FastAllocBase's explicit qualification by WTF::.
     401using WTF::FastAllocBase;
     402
    400403#endif // FastAllocBase_h
Note: See TracChangeset for help on using the changeset viewer.