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

Unified Diff: chromeos/login/auth/test_attempt_state.h

Issue 856563004: Update {virtual,override,final} to follow C++11 style in chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « chromeos/login/auth/online_attempt_host.h ('k') | chromeos/login/login_state_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/login/auth/test_attempt_state.h
diff --git a/chromeos/login/auth/test_attempt_state.h b/chromeos/login/auth/test_attempt_state.h
index cebe9d79725628be221b288381d892b5ea4e2651..5c938628636a91281f68871e0bbab061928efb40 100644
--- a/chromeos/login/auth/test_attempt_state.h
+++ b/chromeos/login/auth/test_attempt_state.h
@@ -19,7 +19,7 @@ class CHROMEOS_EXPORT TestAttemptState : public AuthAttemptState {
public:
TestAttemptState(const UserContext& credentials, const bool user_is_new);
- virtual ~TestAttemptState();
+ ~TestAttemptState() override;
// Act as though an online login attempt completed already.
void PresetOnlineLoginStatus(const AuthFailure& outcome);
@@ -32,13 +32,13 @@ class CHROMEOS_EXPORT TestAttemptState : public AuthAttemptState {
cryptohome::MountError cryptohome_code);
// To allow state to be queried on the main thread during tests.
- virtual bool online_complete() override;
- virtual const AuthFailure& online_outcome() 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 cryptohome::MountError cryptohome_code() override;
+ bool online_complete() override;
+ const AuthFailure& online_outcome() override;
+ bool is_first_time_user() override;
+ GaiaAuthFetcher::HostedAccountsSetting hosted_policy() override;
+ bool cryptohome_complete() override;
+ bool cryptohome_outcome() override;
+ cryptohome::MountError cryptohome_code() override;
private:
DISALLOW_COPY_AND_ASSIGN(TestAttemptState);
« no previous file with comments | « chromeos/login/auth/online_attempt_host.h ('k') | chromeos/login/login_state_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698