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

Unified Diff: chrome/browser/chromeos/login/test_attempt_state.h

Issue 8638016: Add OVERRIDE to chrome/browser/chromeos/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/chromeos/login/test_attempt_state.h
diff --git a/chrome/browser/chromeos/login/test_attempt_state.h b/chrome/browser/chromeos/login/test_attempt_state.h
index 610e73ca39f0e92132e6a6cd2e382e3027215fa6..a3e4abea91ed0fd7914d7a4d33822bd63f7b763e 100644
--- a/chrome/browser/chromeos/login/test_attempt_state.h
+++ b/chrome/browser/chromeos/login/test_attempt_state.h
@@ -8,6 +8,7 @@
#include <string>
+#include "base/compiler_specific.h"
#include "chrome/browser/chromeos/login/auth_attempt_state.h"
#include "chrome/browser/chromeos/login/login_status_consumer.h"
#include "chrome/common/net/gaia/gaia_auth_consumer.h"
@@ -39,14 +40,14 @@ class TestAttemptState : public AuthAttemptState {
void PresetCryptohomeStatus(bool cryptohome_outcome, int cryptohome_code);
// To allow state to be queried on the main thread during tests.
- virtual bool online_complete();
- virtual const LoginFailure& online_outcome();
- virtual const GaiaAuthConsumer::ClientLoginResult& credentials();
- virtual bool is_first_time_user();
- virtual GaiaAuthFetcher::HostedAccountsSetting hosted_policy();
- virtual bool cryptohome_complete();
- virtual bool cryptohome_outcome();
- virtual int cryptohome_code();
+ virtual bool online_complete() OVERRIDE;
+ virtual const LoginFailure& online_outcome() OVERRIDE;
+ virtual const GaiaAuthConsumer::ClientLoginResult& credentials() OVERRIDE;
+ virtual bool is_first_time_user() OVERRIDE;
+ virtual GaiaAuthFetcher::HostedAccountsSetting hosted_policy() OVERRIDE;
+ virtual bool cryptohome_complete() OVERRIDE;
+ virtual bool cryptohome_outcome() OVERRIDE;
+ virtual int cryptohome_code() OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(TestAttemptState);

Powered by Google App Engine
This is Rietveld 408576698