diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-01 23:16:39 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-01 23:16:39 +0000 |
commit | d5d9bc52bdb680caf25f7c7216cd85aa53bec2f7 (patch) | |
tree | a90e3e30b07ad8d9fc0924dd5a4b8823b1e21157 /remoting | |
parent | debf51be16b4e30f981f0732f7ad191ca1f7239d (diff) | |
download | chromium_src-d5d9bc52bdb680caf25f7c7216cd85aa53bec2f7.zip chromium_src-d5d9bc52bdb680caf25f7c7216cd85aa53bec2f7.tar.gz chromium_src-d5d9bc52bdb680caf25f7c7216cd85aa53bec2f7.tar.bz2 |
Chromium style checker cleanup
Automated clean up of style checker errors that were missed due to the plugin
not being executed on implementation files.
BUG=115047
Review URL: https://chromiumcodereview.appspot.com/13191010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@191697 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/protocol/third_party_authenticator_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/protocol/third_party_authenticator_unittest.cc b/remoting/protocol/third_party_authenticator_unittest.cc index a7dfcbe..fc95f82 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 { const GURL& token_url, const std::string& host_public_key, const std::string& scope, - const TokenFetchedCallback& token_fetched_callback) { + const TokenFetchedCallback& token_fetched_callback) OVERRIDE { ASSERT_EQ(token_url.spec(), kTokenUrl); ASSERT_EQ(scope, kTokenScope); ASSERT_FALSE(token_fetched_callback.is_null()); @@ -73,7 +73,7 @@ class ThirdPartyAuthenticatorTest : public AuthenticatorTestBase { virtual void ValidateThirdPartyToken( const std::string& token, - const TokenValidatedCallback& token_validated_callback) { + const TokenValidatedCallback& token_validated_callback) OVERRIDE { ASSERT_FALSE(token_validated_callback.is_null()); on_token_validated_ = token_validated_callback; } |