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

Unified Diff: components/password_manager/content/renderer/credential_manager_client.h

Issue 1361223003: Enforce marking "override" for functions overriding Blink in components/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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: components/password_manager/content/renderer/credential_manager_client.h
diff --git a/components/password_manager/content/renderer/credential_manager_client.h b/components/password_manager/content/renderer/credential_manager_client.h
index 3382c23ea88169578770be0367dc34adf1e8a5c7..a2f35c2c4eeae70417a7066b649495d661bb3ed0 100644
--- a/components/password_manager/content/renderer/credential_manager_client.h
+++ b/components/password_manager/content/renderer/credential_manager_client.h
@@ -63,13 +63,13 @@ class CredentialManagerClient : public blink::WebCredentialManagerClient,
blink::WebCredentialManagerError::ErrorType error_type);
// blink::WebCredentialManager:
- virtual void dispatchStore(
+ void dispatchStore(
const blink::WebCredential& credential,
- WebCredentialManagerClient::NotificationCallbacks* callbacks);
- virtual void dispatchRequireUserMediation(NotificationCallbacks* callbacks);
- virtual void dispatchGet(bool zero_click_only,
- const blink::WebVector<blink::WebURL>& federations,
- RequestCallbacks* callbacks);
+ WebCredentialManagerClient::NotificationCallbacks* callbacks) override;
+ void dispatchRequireUserMediation(NotificationCallbacks* callbacks) override;
+ void dispatchGet(bool zero_click_only,
+ const blink::WebVector<blink::WebURL>& federations,
+ RequestCallbacks* callbacks) override;
private:
typedef IDMap<blink::WebCredentialManagerClient::RequestCallbacks,

Powered by Google App Engine
This is Rietveld 408576698