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

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

Issue 616283002: Revert "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
« no previous file with comments | « no previous file | components/password_manager/content/browser/content_credential_manager_dispatcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9b51f8a5bee2d194c484133645ac6785916a4897..62360682795705dce5dacba7270140ee3c9596c6 100644
--- a/components/password_manager/content/browser/content_credential_manager_dispatcher.h
+++ b/components/password_manager/content/browser/content_credential_manager_dispatcher.h
@@ -39,22 +39,22 @@ 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 implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
// PasswordStoreConsumer implementation.
virtual void OnGetPasswordStoreResults(
- const std::vector<autofill::PasswordForm*>& results) override;
+ const std::vector<autofill::PasswordForm*>& results) OVERRIDE;
private:
PasswordStore* GetPasswordStore();
« no previous file with comments | « no previous file | components/password_manager/content/browser/content_credential_manager_dispatcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698