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); |