| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |