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 |