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

Unified Diff: remoting/protocol/third_party_authenticator_unittest.cc

Issue 638213002: remove more OVERRIDE instances in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: remoting/protocol/third_party_authenticator_unittest.cc
diff --git a/remoting/protocol/third_party_authenticator_unittest.cc b/remoting/protocol/third_party_authenticator_unittest.cc
index 08b1a3914bc19a7e0f5dcb08dca0e64113c7104e..9da75d3762077e0ce22f7f58e52e0956a61ed358 100644
--- a/remoting/protocol/third_party_authenticator_unittest.cc
+++ b/remoting/protocol/third_party_authenticator_unittest.cc
@@ -43,7 +43,7 @@ class ThirdPartyAuthenticatorTest : public AuthenticatorTestBase {
virtual void FetchThirdPartyToken(
const GURL& token_url,
const std::string& scope,
- const TokenFetchedCallback& token_fetched_callback) OVERRIDE {
+ const TokenFetchedCallback& token_fetched_callback) override {
ASSERT_EQ(token_url.spec(), kTokenUrl);
ASSERT_EQ(scope, kTokenScope);
ASSERT_FALSE(token_fetched_callback.is_null());
@@ -72,7 +72,7 @@ class ThirdPartyAuthenticatorTest : public AuthenticatorTestBase {
virtual void ValidateThirdPartyToken(
const std::string& token,
- const TokenValidatedCallback& token_validated_callback) OVERRIDE {
+ const TokenValidatedCallback& token_validated_callback) override {
ASSERT_FALSE(token_validated_callback.is_null());
on_token_validated_ = token_validated_callback;
}
@@ -84,11 +84,11 @@ class ThirdPartyAuthenticatorTest : public AuthenticatorTestBase {
on_token_validated.Run(shared_secret);
}
- virtual const GURL& token_url() const OVERRIDE {
+ virtual const GURL& token_url() const override {
return token_url_;
}
- virtual const std::string& token_scope() const OVERRIDE {
+ virtual const std::string& token_scope() const override {
return token_scope_;
}
« no previous file with comments | « remoting/protocol/third_party_authenticator_base.h ('k') | remoting/protocol/third_party_client_authenticator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698