| 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 "chrome/browser/signin/signin_tracker.h" | 5 #include "chrome/browser/signin/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/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| 11 #include "chrome/browser/signin/signin_manager.h" | 11 #include "chrome/browser/signin/signin_manager.h" |
| 12 #include "chrome/browser/signin/token_service.h" | 12 #include "chrome/browser/signin/token_service.h" |
| 13 #include "chrome/browser/signin/token_service_factory.h" | 13 #include "chrome/browser/signin/token_service_factory.h" |
| 14 #include "chrome/browser/sync/profile_sync_service_factory.h" | 14 #include "chrome/browser/sync/profile_sync_service_factory.h" |
| 15 #include "chrome/browser/sync/profile_sync_service_mock.h" | 15 #include "chrome/browser/sync/profile_sync_service_mock.h" |
| 16 #include "chrome/common/chrome_notification_types.h" | 16 #include "chrome/common/chrome_notification_types.h" |
| 17 #include "chrome/common/net/gaia/gaia_constants.h" | |
| 18 #include "chrome/common/net/gaia/google_service_auth_error.h" | |
| 19 #include "content/public/browser/notification_service.h" | 17 #include "content/public/browser/notification_service.h" |
| 18 #include "google_apis/gaia/gaia_constants.h" |
| 19 #include "google_apis/gaia/google_service_auth_error.h" |
| 20 | 20 |
| 21 #include "testing/gmock/include/gmock/gmock.h" | 21 #include "testing/gmock/include/gmock/gmock.h" |
| 22 #include "testing/gtest/include/gtest/gtest.h" | 22 #include "testing/gtest/include/gtest/gtest.h" |
| 23 | 23 |
| 24 using ::testing::_; | 24 using ::testing::_; |
| 25 using ::testing::AnyNumber; | 25 using ::testing::AnyNumber; |
| 26 using ::testing::Mock; | 26 using ::testing::Mock; |
| 27 using ::testing::Return; | 27 using ::testing::Return; |
| 28 using ::testing::ReturnRef; | 28 using ::testing::ReturnRef; |
| 29 | 29 |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 EXPECT_CALL(*mock_pss_, waiting_for_auth()).WillRepeatedly(Return(false)); | 327 EXPECT_CALL(*mock_pss_, waiting_for_auth()).WillRepeatedly(Return(false)); |
| 328 EXPECT_CALL(*mock_pss_, GetAuthError()).WillRepeatedly(ReturnRef(error)); | 328 EXPECT_CALL(*mock_pss_, GetAuthError()).WillRepeatedly(ReturnRef(error)); |
| 329 EXPECT_CALL(*mock_pss_, HasUnrecoverableError()).WillRepeatedly( | 329 EXPECT_CALL(*mock_pss_, HasUnrecoverableError()).WillRepeatedly( |
| 330 Return(false)); | 330 Return(false)); |
| 331 EXPECT_CALL(*mock_pss_, sync_initialized()).WillRepeatedly(Return(true)); | 331 EXPECT_CALL(*mock_pss_, sync_initialized()).WillRepeatedly(Return(true)); |
| 332 // Any error should result in SigninFailed() being called. | 332 // Any error should result in SigninFailed() being called. |
| 333 EXPECT_CALL(observer_, SigninFailed(error)); | 333 EXPECT_CALL(observer_, SigninFailed(error)); |
| 334 tracker_.reset(new SigninTracker(profile_.get(), &observer_, | 334 tracker_.reset(new SigninTracker(profile_.get(), &observer_, |
| 335 SigninTracker::SERVICES_INITIALIZING)); | 335 SigninTracker::SERVICES_INITIALIZING)); |
| 336 } | 336 } |
| OLD | NEW |