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

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

Issue 950343002: Decouple memory() from Console (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: nits Created 5 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: Source/core/timing/ConsoleMemory.h
diff --git a/Source/core/timing/ConsoleMemory.h b/Source/core/timing/ConsoleMemory.h
new file mode 100644
index 0000000000000000000000000000000000000000..9eb6705f71ec0953a137ea40955e45ba708aea4c
--- /dev/null
+++ b/Source/core/timing/ConsoleMemory.h
@@ -0,0 +1,33 @@
+// 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 NoBaseWillBeGarbageCollectedFinalized<ConsoleMemory>, public WillBeHeapSupplement<Console> {
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ConsoleMemory);
+ DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(ConsoleMemory);
+public:
+ static ConsoleMemory& from(Console&);
+ static MemoryInfo* memory(Console&);
+
+ DECLARE_VIRTUAL_TRACE();
+
+private:
+ static const char* supplementName() { return "ConsoleMemory"; }
+ MemoryInfo* memory();
+
+ RefPtrWillBeMember<MemoryInfo> m_memory;
+};
+
+} // namespace blink
+
+#endif // ConsoleMemory_h

Powered by Google App Engine
This is Rietveld 408576698