Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp |
index eeb5b2f02665a9ba0f18dfc96add945f8c7b417d..cc3b435f6b3253a8a61342ed13a77647254915c7 100644 |
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp |
@@ -3,13 +3,14 @@ |
// found in the LICENSE file. |
#include "platform/graphics/paint/DisplayItemClient.h" |
- |
-#if ENABLE(ASSERT) |
- |
#include "wtf/HashSet.h" |
namespace blink { |
+bool DisplayItemClient::s_cacheStatus = false; |
+ |
+#if ENABLE(ASSERT) |
+ |
HashSet<const DisplayItemClient*>* liveDisplayItemClients = nullptr; |
DisplayItemClient::DisplayItemClient() |
@@ -29,6 +30,6 @@ bool DisplayItemClient::isAlive(const DisplayItemClient& client) |
return liveDisplayItemClients && liveDisplayItemClients->contains(&client); |
} |
-} // namespace blink |
- |
#endif // ENABLE(ASSERT) |
+ |
+} // namespace blink |