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

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

Issue 1063513007: Oilpan: have Console be on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Console public inherits DOMWindowProperty Created 5 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
« no previous file with comments | « Source/core/frame/LocalDOMWindow.h ('k') | Source/core/timing/ConsoleMemory.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/timing/ConsoleMemory.h
diff --git a/Source/core/timing/ConsoleMemory.h b/Source/core/timing/ConsoleMemory.h
index 283445cdbc561d67e7f939f411f873d4584cb92b..0276bc70eaa780dcc2d38f70512b078ca41f4732 100644
--- a/Source/core/timing/ConsoleMemory.h
+++ b/Source/core/timing/ConsoleMemory.h
@@ -12,9 +12,8 @@ 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);
+class ConsoleMemory final : public GarbageCollected<ConsoleMemory>, public HeapSupplement<Console> {
+ USING_GARBAGE_COLLECTED_MIXIN(ConsoleMemory);
public:
static ConsoleMemory& from(Console&);
static MemoryInfo* memory(Console&);
@@ -26,7 +25,7 @@ private:
static const char* supplementName() { return "ConsoleMemory"; }
MemoryInfo* memory();
- PersistentWillBeMember<MemoryInfo> m_memory;
+ Member<MemoryInfo> m_memory;
};
} // namespace blink
« no previous file with comments | « Source/core/frame/LocalDOMWindow.h ('k') | Source/core/timing/ConsoleMemory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698