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

Unified Diff: third_party/WebKit/Source/core/timing/ConsoleMemory.h

Issue 1859293002: [DevTools] Move Console to v8_inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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/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
« no previous file with comments | « third_party/WebKit/Source/core/page/ChromeClient.h ('k') | third_party/WebKit/Source/core/timing/ConsoleMemory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698