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

Side by Side Diff: chrome/browser/signin/signin_tracker_unittest.cc

Issue 1143323005: Refactor AO2TS to make it easier to componentize. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address roger's comments Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/signin/core/browser/signin_tracker.h" 5 #include "components/signin/core/browser/signin_tracker.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "chrome/browser/chrome_notification_types.h" 10 #include "chrome/browser/chrome_notification_types.h"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 EXPECT_CALL(observer_, SigninSuccess()); 112 EXPECT_CALL(observer_, SigninSuccess());
113 EXPECT_CALL(observer_, SigninFailed(_)).Times(0); 113 EXPECT_CALL(observer_, SigninFailed(_)).Times(0);
114 114
115 AccountTrackerService* service = 115 AccountTrackerService* service =
116 AccountTrackerServiceFactory::GetForProfile(profile_.get()); 116 AccountTrackerServiceFactory::GetForProfile(profile_.get());
117 std::string gaia_id = "gaia_id"; 117 std::string gaia_id = "gaia_id";
118 std::string email = "user@gmail.com"; 118 std::string email = "user@gmail.com";
119 std::string account_id = service->SeedAccountInfo(gaia_id, email); 119 std::string account_id = service->SeedAccountInfo(gaia_id, email);
120 120
121 mock_signin_manager_->SetAuthenticatedAccountInfo(gaia_id, email); 121 mock_signin_manager_->SetAuthenticatedAccountInfo(gaia_id, email);
122 fake_oauth2_token_service_->IssueRefreshTokenForUser(account_id, 122 fake_oauth2_token_service_->UpdateCredentials(account_id, "refresh_token");
123 "refresh_token");
124 } 123 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698