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

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

Issue 1104153002: Expose ReconcilorState. Rename MergeSession in Signin Tracker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: VLOGging the reconcilor Created 5 years, 8 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 27 matching lines...) Expand all
38 38
39 namespace { 39 namespace {
40 40
41 class MockObserver : public SigninTracker::Observer { 41 class MockObserver : public SigninTracker::Observer {
42 public: 42 public:
43 MockObserver() {} 43 MockObserver() {}
44 ~MockObserver() {} 44 ~MockObserver() {}
45 45
46 MOCK_METHOD1(SigninFailed, void(const GoogleServiceAuthError&)); 46 MOCK_METHOD1(SigninFailed, void(const GoogleServiceAuthError&));
47 MOCK_METHOD0(SigninSuccess, void(void)); 47 MOCK_METHOD0(SigninSuccess, void(void));
48 MOCK_METHOD1(MergeSessionComplete, void(const GoogleServiceAuthError&)); 48 MOCK_METHOD1(AccountAddedToCookie, void(const GoogleServiceAuthError&));
49 }; 49 };
50 50
51 } // namespace 51 } // namespace
52 52
53 class SigninTrackerTest : public testing::Test { 53 class SigninTrackerTest : public testing::Test {
54 public: 54 public:
55 SigninTrackerTest() {} 55 SigninTrackerTest() {}
56 void SetUp() override { 56 void SetUp() override {
57 TestingProfile::Builder builder; 57 TestingProfile::Builder builder;
58 builder.AddTestingFactory(ProfileOAuth2TokenServiceFactory::GetInstance(), 58 builder.AddTestingFactory(ProfileOAuth2TokenServiceFactory::GetInstance(),
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_->IssueRefreshTokenForUser(account_id,
123 "refresh_token"); 123 "refresh_token");
124 } 124 }
OLDNEW
« no previous file with comments | « chrome/browser/signin/fake_gaia_cookie_manager_service.cc ('k') | chrome/browser/ui/sync/one_click_signin_sync_starter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698