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

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

Issue 1846913009: HeapSupplements are now just Supplements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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.cpp
diff --git a/third_party/WebKit/Source/core/timing/ConsoleMemory.cpp b/third_party/WebKit/Source/core/timing/ConsoleMemory.cpp
index 50b520c94c06fa53587abdab8b4477cd2bca3b79..86634825122dba90c7ab471c300b5523efc56267 100644
--- a/third_party/WebKit/Source/core/timing/ConsoleMemory.cpp
+++ b/third_party/WebKit/Source/core/timing/ConsoleMemory.cpp
@@ -12,7 +12,7 @@ namespace blink {
// static
ConsoleMemory& ConsoleMemory::from(Console& console)
{
- ConsoleMemory* supplement = static_cast<ConsoleMemory*>(HeapSupplement<Console>::from(console, supplementName()));
+ ConsoleMemory* supplement = static_cast<ConsoleMemory*>(Supplement<Console>::from(console, supplementName()));
if (!supplement) {
supplement = new ConsoleMemory();
provideTo(console, supplementName(), supplement);
« no previous file with comments | « third_party/WebKit/Source/core/timing/ConsoleMemory.h ('k') | third_party/WebKit/Source/core/timing/DOMWindowPerformance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698