Changeset 45130 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jun 24, 2009, 6:32:26 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r45128 r45130 1 2009-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 1 14 2009-06-24 David Levin <[email protected]> 2 15 -
trunk/JavaScriptCore/interpreter/Interpreter.h
r44418 r45130 67 67 enum { MaxMainThreadReentryDepth = 256, MaxSecondaryThreadReentryDepth = 32 }; 68 68 69 class Interpreter : public WTF::FastAllocBase {69 class Interpreter : public FastAllocBase { 70 70 friend class JIT; 71 71 friend class CachedCall; -
trunk/JavaScriptCore/profiler/CallIdentifier.h
r44871 r45130 33 33 namespace JSC { 34 34 35 struct CallIdentifier : public WTF::FastAllocBase {35 struct CallIdentifier : public FastAllocBase { 36 36 UString m_name; 37 37 UString m_url; -
trunk/JavaScriptCore/runtime/ScopeChain.h
r45076 r45130 31 31 class ScopeChainIterator; 32 32 33 class ScopeChainNode : public WTF::FastAllocBase {33 class ScopeChainNode : public FastAllocBase { 34 34 public: 35 35 ScopeChainNode(ScopeChainNode* next, JSObject* object, JSGlobalData* globalData, JSObject* globalThis) -
trunk/JavaScriptCore/wtf/FastAllocBase.h
r44163 r45130 398 398 } // namespace WTF 399 399 400 // Using WTF::FastAllocBase to avoid using FastAllocBase's explicit qualification by WTF::. 401 using WTF::FastAllocBase; 402 400 403 #endif // FastAllocBase_h
Note:
See TracChangeset
for help on using the changeset viewer.