Changeset 76248 in webkit for trunk/Source/JavaScriptCore/profiler
- Timestamp:
- Jan 20, 2011, 8:30:54 AM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore/profiler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/profiler/CallIdentifier.h
r72592 r76248 29 29 30 30 #include <runtime/UString.h> 31 #include "FastAllocBase.h"32 31 #include <wtf/text/CString.h> 33 32 #include <wtf/text/StringHash.h> … … 35 34 namespace JSC { 36 35 37 struct CallIdentifier : public FastAllocBase { 36 struct CallIdentifier { 37 WTF_MAKE_FAST_ALLOCATED; 38 public: 38 39 UString m_name; 39 40 UString m_url; -
trunk/Source/JavaScriptCore/profiler/Profiler.h
r72351 r76248 45 45 struct CallIdentifier; 46 46 47 class Profiler : public FastAllocBase { 47 class Profiler { 48 WTF_MAKE_FAST_ALLOCATED; 48 49 public: 49 50 static Profiler** enabledProfilerReference()
Note:
See TracChangeset
for help on using the changeset viewer.