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

Unified Diff: third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (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.h
diff --git a/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.h b/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.h
index 17f3b61f7f946d0c0dde7ac0ce54cdf126b79f6f..ae612d25bbdb6540eb974a205663c52078957aa4 100644
--- a/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.h
+++ b/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.h
@@ -20,9 +20,8 @@ class WebURL;
// CredentialManagerClient lives as a supplement to Page, and wraps the embedder-provided
// WebCredentialManagerClient's methods to make them visible to the bindings code.
-class MODULES_EXPORT CredentialManagerClient final : public NoBaseWillBeGarbageCollectedFinalized<CredentialManagerClient>, public WillBeHeapSupplement<Page> {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(CredentialManagerClient);
- USING_FAST_MALLOC_WILL_BE_REMOVED(CredentialManagerClient);
+class MODULES_EXPORT CredentialManagerClient final : public GarbageCollectedFinalized<CredentialManagerClient>, public HeapSupplement<Page> {
+ USING_GARBAGE_COLLECTED_MIXIN(CredentialManagerClient);
public:
explicit CredentialManagerClient(WebCredentialManagerClient*);
virtual ~CredentialManagerClient();

Powered by Google App Engine
This is Rietveld 408576698