Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2558)

Unified Diff: Source/wtf/InstanceCounter.cpp

Issue 383743002: Oilpan: GC profiling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed Profiling.h Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/wtf/InstanceCounter.cpp
diff --git a/Source/wtf/InstanceCounter.cpp b/Source/wtf/InstanceCounter.cpp
index a34822eb3ac5eefcdc62d256977d704364ad470c..7aa41abc1fbd9cc43b6c7fb70f2fef7236b7e5b5 100644
--- a/Source/wtf/InstanceCounter.cpp
+++ b/Source/wtf/InstanceCounter.cpp
@@ -35,7 +35,7 @@
namespace WTF {
-#if ENABLE(INSTANCE_COUNTER) || ENABLE(GC_TRACING)
+#if ENABLE(INSTANCE_COUNTER) || ENABLE(GC_PROFILING)
#if COMPILER(CLANG)
const size_t extractNameFunctionPrefixLength = sizeof("const char *WTF::extractNameFunction() [T = ") - 1;
@@ -146,6 +146,6 @@ String dumpRefCountedInstanceCounts()
return String("{}");
}
-#endif // ENABLE(INSTANCE_COUNTER) || ENABLE(GC_TRACING)
+#endif // ENABLE(INSTANCE_COUNTER) || ENABLE(GC_PROFILING)
} // namespace WTF

Powered by Google App Engine
This is Rietveld 408576698