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

Unified Diff: components/password_manager/content/browser/content_credential_manager_dispatcher.h

Issue 611383002: Replace OVERRIDE with its C++11 counterpart in components/password_manager/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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/browser/content_credential_manager_dispatcher.h
diff --git a/components/password_manager/content/browser/content_credential_manager_dispatcher.h b/components/password_manager/content/browser/content_credential_manager_dispatcher.h
index 56217c6539602d97ed1a8a450fe988afbfd8e9e5..0b4ba693af444d4301b511ae311eef0937eb7216 100644
--- a/components/password_manager/content/browser/content_credential_manager_dispatcher.h
+++ b/components/password_manager/content/browser/content_credential_manager_dispatcher.h
@@ -32,18 +32,18 @@ class ContentCredentialManagerDispatcher : public CredentialManagerDispatcher,
// CredentialManagerDispatcher implementation.
virtual void OnNotifyFailedSignIn(
int request_id,
- const password_manager::CredentialInfo&) OVERRIDE;
+ const password_manager::CredentialInfo&) override;
virtual void OnNotifySignedIn(
int request_id,
- const password_manager::CredentialInfo&) OVERRIDE;
- virtual void OnNotifySignedOut(int request_id) OVERRIDE;
+ const password_manager::CredentialInfo&) override;
+ virtual void OnNotifySignedOut(int request_id) override;
virtual void OnRequestCredential(
int request_id,
bool zero_click_only,
- const std::vector<GURL>& federations) OVERRIDE;
+ const std::vector<GURL>& federations) override;
// content::WebContentsObserver overrides.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
private:
PasswordManagerClient* client_;

Powered by Google App Engine
This is Rietveld 408576698