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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/DatabaseClient.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/modules/webdatabase/DatabaseClient.cpp
diff --git a/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.cpp b/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.cpp
index e43c849c61f78240bbb3a88ac3518e48fa8fe342..67eab9f5682ee323893d483ebb058e5739c2fcea 100644
--- a/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.cpp
+++ b/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.cpp
@@ -48,7 +48,7 @@ DEFINE_TRACE(DatabaseClient)
DatabaseClient* DatabaseClient::fromPage(Page* page)
{
- return static_cast<DatabaseClient*>(HeapSupplement<Page>::from(page, supplementName()));
+ return static_cast<DatabaseClient*>(Supplement<Page>::from(page, supplementName()));
}
DatabaseClient* DatabaseClient::from(ExecutionContext* context)

Powered by Google App Engine
This is Rietveld 408576698