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

Unified Diff: remoting/host/setup/host_starter.h

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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
« no previous file with comments | « remoting/host/setup/daemon_installer_win.cc ('k') | remoting/host/setup/me2me_native_messaging_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/setup/host_starter.h
diff --git a/remoting/host/setup/host_starter.h b/remoting/host/setup/host_starter.h
index 1570315c1060fada140227740c2c059f3152da71..d990509b6534b56ca7ae8e9a20fd099e0ca75daa 100644
--- a/remoting/host/setup/host_starter.h
+++ b/remoting/host/setup/host_starter.h
@@ -54,21 +54,21 @@ class HostStarter : public gaia::GaiaOAuthClient::Delegate,
// gaia::GaiaOAuthClient::Delegate
virtual void OnGetTokensResponse(const std::string& refresh_token,
const std::string& access_token,
- int expires_in_seconds) OVERRIDE;
+ int expires_in_seconds) override;
virtual void OnRefreshTokenResponse(const std::string& access_token,
- int expires_in_seconds) OVERRIDE;
- virtual void OnGetUserEmailResponse(const std::string& user_email) OVERRIDE;
+ int expires_in_seconds) override;
+ virtual void OnGetUserEmailResponse(const std::string& user_email) override;
// remoting::ServiceClient::Delegate
- virtual void OnHostRegistered(const std::string& authorization_code) OVERRIDE;
- virtual void OnHostUnregistered() OVERRIDE;
+ virtual void OnHostRegistered(const std::string& authorization_code) override;
+ virtual void OnHostUnregistered() override;
// TODO(sergeyu): Following methods are members of all three delegate
// interfaces implemented in this class. Fix ServiceClient and
// GaiaUserEmailFetcher so that Delegate interfaces do not overlap (ideally
// they should be changed to use Callback<>).
- virtual void OnOAuthError() OVERRIDE;
- virtual void OnNetworkError(int response_code) OVERRIDE;
+ virtual void OnOAuthError() override;
+ virtual void OnNetworkError(int response_code) override;
private:
HostStarter(scoped_ptr<gaia::GaiaOAuthClient> oauth_client,
« no previous file with comments | « remoting/host/setup/daemon_installer_win.cc ('k') | remoting/host/setup/me2me_native_messaging_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698