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

Unified Diff: chrome/browser/sync/signin_manager.h

Issue 8470005: Add OVERRIDE to chrome/browser/sync/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: includes Created 9 years, 1 month 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/sync/signin_manager.h
diff --git a/chrome/browser/sync/signin_manager.h b/chrome/browser/sync/signin_manager.h
index 5b3a722c78e4f40ba02d2a2236ed9f3f0a6a51c5..240036928856c8de4bee646978ec5bf1cc658132 100644
--- a/chrome/browser/sync/signin_manager.h
+++ b/chrome/browser/sync/signin_manager.h
@@ -13,6 +13,7 @@
#include <string>
+#include "base/compiler_specific.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/net/gaia/gaia_oauth_fetcher.h"
@@ -88,15 +89,14 @@ class SigninManager : public GaiaAuthConsumer,
// GaiaAuthConsumer
virtual void OnClientLoginSuccess(const ClientLoginResult& result) OVERRIDE;
- virtual void OnClientLoginFailure(const GoogleServiceAuthError& error)
- OVERRIDE;
+ virtual void OnClientLoginFailure(
+ const GoogleServiceAuthError& error) OVERRIDE;
virtual void OnGetUserInfoSuccess(const std::string& key,
const std::string& value) OVERRIDE;
virtual void OnGetUserInfoKeyNotFound(const std::string& key) OVERRIDE;
- virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error)
- OVERRIDE;
- virtual void OnTokenAuthFailure(const GoogleServiceAuthError& error)
- OVERRIDE;
+ virtual void OnGetUserInfoFailure(
+ const GoogleServiceAuthError& error) OVERRIDE;
+ virtual void OnTokenAuthFailure(const GoogleServiceAuthError& error) OVERRIDE;
// GaiaOAuthConsumer
virtual void OnOAuthGetAccessTokenSuccess(const std::string& token,
@@ -105,10 +105,10 @@ class SigninManager : public GaiaAuthConsumer,
const GoogleServiceAuthError& error) OVERRIDE;
virtual void OnOAuthWrapBridgeSuccess(const std::string& service_name,
const std::string& token,
- const std::string& expires_in)
- OVERRIDE;
- virtual void OnOAuthWrapBridgeFailure(const std::string& service_name,
- const GoogleServiceAuthError& error);
+ const std::string& expires_in) OVERRIDE;
+ virtual void OnOAuthWrapBridgeFailure(
+ const std::string& service_name,
+ const GoogleServiceAuthError& error) OVERRIDE;
virtual void OnUserInfoSuccess(const std::string& email) OVERRIDE;
virtual void OnUserInfoFailure(const GoogleServiceAuthError& error) OVERRIDE;
« no previous file with comments | « chrome/browser/sync/profile_sync_service_autofill_unittest.cc ('k') | chrome/browser/sync/signin_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698