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

Unified Diff: third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.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/credentialmanager/CredentialManagerClient.cpp
diff --git a/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.cpp b/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.cpp
index 645983a473416cb118b10c990578cc21ac73d48f..30b7bbbe836a6bf3e0c5ff912011cce6b0271d81 100644
--- a/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.cpp
+++ b/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.cpp
@@ -22,7 +22,7 @@ CredentialManagerClient::~CredentialManagerClient()
DEFINE_TRACE(CredentialManagerClient)
{
- HeapSupplement<Page>::trace(visitor);
+ Supplement<Page>::trace(visitor);
}
// static
@@ -42,7 +42,7 @@ CredentialManagerClient* CredentialManagerClient::from(ExecutionContext* executi
// static
CredentialManagerClient* CredentialManagerClient::from(Page* page)
{
- return static_cast<CredentialManagerClient*>(HeapSupplement<Page>::from(page, supplementName()));
+ return static_cast<CredentialManagerClient*>(Supplement<Page>::from(page, supplementName()));
}
void provideCredentialManagerClientTo(Page& page, CredentialManagerClient* client)

Powered by Google App Engine
This is Rietveld 408576698