| 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 "testing/gtest/include/gtest/gtest.h" | 5 #include "testing/gtest/include/gtest/gtest.h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
| 9 #include "chrome/browser/prefs/pref_service.h" | 9 #include "chrome/browser/prefs/pref_service.h" |
| 10 #include "chrome/browser/signin/signin_manager.h" | 10 #include "chrome/browser/signin/signin_manager.h" |
| 11 #include "chrome/browser/signin/signin_manager_factory.h" | 11 #include "chrome/browser/signin/signin_manager_factory.h" |
| 12 #include "chrome/browser/signin/signin_manager_fake.h" | 12 #include "chrome/browser/signin/signin_manager_fake.h" |
| 13 #include "chrome/browser/signin/token_service.h" | 13 #include "chrome/browser/signin/token_service.h" |
| 14 #include "chrome/browser/signin/token_service_factory.h" | 14 #include "chrome/browser/signin/token_service_factory.h" |
| 15 #include "chrome/browser/sync/glue/data_type_manager.h" | 15 #include "chrome/browser/sync/glue/data_type_manager.h" |
| 16 #include "chrome/browser/sync/glue/data_type_manager_mock.h" | 16 #include "chrome/browser/sync/glue/data_type_manager_mock.h" |
| 17 #include "chrome/browser/sync/profile_sync_components_factory_mock.h" | 17 #include "chrome/browser/sync/profile_sync_components_factory_mock.h" |
| 18 #include "chrome/browser/sync/profile_sync_test_util.h" | 18 #include "chrome/browser/sync/profile_sync_test_util.h" |
| 19 #include "chrome/browser/sync/test_profile_sync_service.h" | 19 #include "chrome/browser/sync/test_profile_sync_service.h" |
| 20 #include "chrome/common/chrome_notification_types.h" | 20 #include "chrome/common/chrome_notification_types.h" |
| 21 #include "chrome/common/net/gaia/gaia_auth_consumer.h" | |
| 22 #include "chrome/common/net/gaia/gaia_constants.h" | |
| 23 #include "chrome/common/pref_names.h" | 21 #include "chrome/common/pref_names.h" |
| 24 #include "chrome/test/base/testing_profile.h" | 22 #include "chrome/test/base/testing_profile.h" |
| 25 #include "content/public/test/test_browser_thread.h" | 23 #include "content/public/test/test_browser_thread.h" |
| 24 #include "google_apis/gaia/gaia_auth_consumer.h" |
| 25 #include "google_apis/gaia/gaia_constants.h" |
| 26 #include "testing/gmock/include/gmock/gmock.h" | 26 #include "testing/gmock/include/gmock/gmock.h" |
| 27 | 27 |
| 28 using browser_sync::DataTypeManager; | 28 using browser_sync::DataTypeManager; |
| 29 using browser_sync::DataTypeManagerMock; | 29 using browser_sync::DataTypeManagerMock; |
| 30 using content::BrowserThread; | 30 using content::BrowserThread; |
| 31 using testing::_; | 31 using testing::_; |
| 32 using testing::AnyNumber; | 32 using testing::AnyNumber; |
| 33 using testing::DoAll; | 33 using testing::DoAll; |
| 34 using testing::InvokeArgument; | 34 using testing::InvokeArgument; |
| 35 using testing::Mock; | 35 using testing::Mock; |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 | 342 |
| 343 // Preload the tokens. | 343 // Preload the tokens. |
| 344 TokenServiceFactory::GetForProfile(profile_.get())->IssueAuthTokenForTest( | 344 TokenServiceFactory::GetForProfile(profile_.get())->IssueAuthTokenForTest( |
| 345 GaiaConstants::kSyncService, "sync_token"); | 345 GaiaConstants::kSyncService, "sync_token"); |
| 346 service_->fail_initial_download(); | 346 service_->fail_initial_download(); |
| 347 | 347 |
| 348 service_->Initialize(); | 348 service_->Initialize(); |
| 349 EXPECT_FALSE(service_->sync_initialized()); | 349 EXPECT_FALSE(service_->sync_initialized()); |
| 350 EXPECT_FALSE(service_->GetBackendForTest()); | 350 EXPECT_FALSE(service_->GetBackendForTest()); |
| 351 } | 351 } |
| OLD | NEW |