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

Unified Diff: third_party/WebKit/Source/wtf/InstanceCounter.h

Issue 1714523006: Refactoring: Remove DETAILED_MEMORY_INFRA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove spamming info Created 4 years, 10 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: third_party/WebKit/Source/wtf/InstanceCounter.h
diff --git a/third_party/WebKit/Source/wtf/InstanceCounter.h b/third_party/WebKit/Source/wtf/InstanceCounter.h
index 8edb31a46379d896097424b64aef35ff71cada5d..68fe149ba4426646092115d865795c0fd70ceadf 100644
--- a/third_party/WebKit/Source/wtf/InstanceCounter.h
+++ b/third_party/WebKit/Source/wtf/InstanceCounter.h
@@ -35,7 +35,7 @@ namespace WTF {
class String;
WTF_EXPORT String dumpRefCountedInstanceCounts();
-#if ENABLE(INSTANCE_COUNTER) || ENABLE(DETAILED_MEMORY_INFRA)
+#if ENABLE(INSTANCE_COUNTER)
WTF_EXPORT void incrementInstanceCount(const char* stringWithTypeName, void* ptr);
WTF_EXPORT void decrementInstanceCount(const char* stringWithTypeName, void* ptr);
@@ -53,7 +53,7 @@ inline void decrementInstanceCount(T* p)
decrementInstanceCount(getStringWithTypeName<T>(), p);
}
-#endif // ENABLE(INSTANCE_COUNTER) || ENABLE(DETAILED_MEMORY_INFRA)
+#endif // ENABLE(INSTANCE_COUNTER)
} // namespace WTF
« no previous file with comments | « third_party/WebKit/Source/platform/heap/Visitor.h ('k') | third_party/WebKit/Source/wtf/InstanceCounter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698