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

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, 10 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 d7233f2c3585f9a9c0ddb27e5a8dd3891ab9200a..b7bd472dc9e558ea28ca1cc2c5b734c81b21dd0c 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