Index: third_party/WebKit/Source/core/timing/ConsoleMemory.h |
diff --git a/third_party/WebKit/Source/core/timing/ConsoleMemory.h b/third_party/WebKit/Source/core/timing/ConsoleMemory.h |
deleted file mode 100644 |
index d1701e3ee510f97fa744dbf73378b241e8740aad..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/Source/core/timing/ConsoleMemory.h |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-// Copyright 2015 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef ConsoleMemory_h |
-#define ConsoleMemory_h |
- |
-#include "platform/Supplementable.h" |
- |
-namespace blink { |
- |
-class Console; |
-class MemoryInfo; |
- |
-class ConsoleMemory final : public GarbageCollected<ConsoleMemory>, public Supplement<Console> { |
- USING_GARBAGE_COLLECTED_MIXIN(ConsoleMemory); |
-public: |
- static ConsoleMemory& from(Console&); |
- static MemoryInfo* memory(Console&); |
- static void setMemory(Console&, MemoryInfo*) { } |
- |
- DEFINE_INLINE_VIRTUAL_TRACE() { Supplement<Console>::trace(visitor); } |
- |
-private: |
- static const char* supplementName() { return "ConsoleMemory"; } |
- MemoryInfo* memory(); |
-}; |
- |
-} // namespace blink |
- |
-#endif // ConsoleMemory_h |