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

Unified Diff: remoting/test/mock_access_token_fetcher.cc

Issue 1037723003: Updated the formatting for the app remoting test driver files using clag-format for consistency. N… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | « remoting/test/fake_remote_host_info_fetcher.cc ('k') | remoting/test/refresh_token_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/mock_access_token_fetcher.cc
diff --git a/remoting/test/mock_access_token_fetcher.cc b/remoting/test/mock_access_token_fetcher.cc
index 694e0923b6a843a5935fbd0d4d8bbbf317ce9696..d5d520199a49bc66048be33d24c2889d5c529aa9 100644
--- a/remoting/test/mock_access_token_fetcher.cc
+++ b/remoting/test/mock_access_token_fetcher.cc
@@ -20,12 +20,13 @@ void MockAccessTokenFetcher::SetAccessTokenFetcher(
scoped_ptr<AccessTokenFetcher> fetcher) {
internal_access_token_fetcher_ = fetcher.Pass();
- ON_CALL(*this, GetAccessTokenFromAuthCode(_, _)).WillByDefault(
- Invoke(internal_access_token_fetcher_.get(),
- &AccessTokenFetcher::GetAccessTokenFromAuthCode));
- ON_CALL(*this, GetAccessTokenFromRefreshToken(_, _)).WillByDefault(
- Invoke(internal_access_token_fetcher_.get(),
- &AccessTokenFetcher::GetAccessTokenFromRefreshToken));
+ ON_CALL(*this, GetAccessTokenFromAuthCode(_, _))
+ .WillByDefault(Invoke(internal_access_token_fetcher_.get(),
+ &AccessTokenFetcher::GetAccessTokenFromAuthCode));
+ ON_CALL(*this, GetAccessTokenFromRefreshToken(_, _))
+ .WillByDefault(
+ Invoke(internal_access_token_fetcher_.get(),
+ &AccessTokenFetcher::GetAccessTokenFromRefreshToken));
}
} // namespace test
« no previous file with comments | « remoting/test/fake_remote_host_info_fetcher.cc ('k') | remoting/test/refresh_token_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698