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

Unified Diff: chrome/browser/signin/easy_unlock_toggle_flow.h

Issue 649313004: Standardize usage of virtual/override/final in chrome/browser/signin/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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: chrome/browser/signin/easy_unlock_toggle_flow.h
diff --git a/chrome/browser/signin/easy_unlock_toggle_flow.h b/chrome/browser/signin/easy_unlock_toggle_flow.h
index 303b843c514ed82544254cdb1bc128b76c12e2db..7e04f02509072d0aa1fe6514735258405d202d10 100644
--- a/chrome/browser/signin/easy_unlock_toggle_flow.h
+++ b/chrome/browser/signin/easy_unlock_toggle_flow.h
@@ -27,24 +27,22 @@ class EasyUnlockToggleFlow : public OAuth2TokenService::Consumer,
const std::string& phone_public_key,
bool toggle_enable,
const ToggleFlowCallback& callback);
- virtual ~EasyUnlockToggleFlow();
+ ~EasyUnlockToggleFlow() override;
void Start();
// OAuth2TokenService::Consumer
- virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
- const std::string& access_token,
- const base::Time& expiration_time) override;
- virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request,
- const GoogleServiceAuthError& error) override;
+ void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
+ const std::string& access_token,
+ const base::Time& expiration_time) override;
+ void OnGetTokenFailure(const OAuth2TokenService::Request* request,
+ const GoogleServiceAuthError& error) override;
// OAuth2MintTokenFlow::Delegate
- virtual void OnMintTokenSuccess(const std::string& access_token,
- int time_to_live) override;
- virtual void OnMintTokenFailure(
- const GoogleServiceAuthError& error) override;
- virtual void OnIssueAdviceSuccess(
- const IssueAdviceInfo& issue_advice) override;
+ void OnMintTokenSuccess(const std::string& access_token,
+ int time_to_live) override;
+ void OnMintTokenFailure(const GoogleServiceAuthError& error) override;
+ void OnIssueAdviceSuccess(const IssueAdviceInfo& issue_advice) override;
private:
// Derived OAuth2ApiCallFlow class to make toggle api call after access token
« no previous file with comments | « chrome/browser/signin/easy_unlock_service_regular.h ('k') | chrome/browser/signin/easy_unlock_toggle_flow.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698