| 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 "base/utf_string_conversions.h" | 5 #include "base/utf_string_conversions.h" |
| 6 #include "base/values.h" | 6 #include "base/values.h" |
| 7 #include "chrome/browser/content_settings/cookie_settings.h" | 7 #include "chrome/browser/content_settings/cookie_settings.h" |
| 8 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" | 8 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" |
| 9 #include "chrome/browser/prefs/pref_service.h" | 9 #include "chrome/browser/prefs/pref_service.h" |
| 10 #include "chrome/browser/prefs/pref_service_syncable.h" | |
| 11 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 10 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
| 12 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
| 13 #include "chrome/browser/profiles/profile_info_cache.h" | 12 #include "chrome/browser/profiles/profile_info_cache.h" |
| 14 #include "chrome/browser/profiles/profile_io_data.h" | 13 #include "chrome/browser/profiles/profile_io_data.h" |
| 15 #include "chrome/browser/profiles/profile_manager.h" | 14 #include "chrome/browser/profiles/profile_manager.h" |
| 16 #include "chrome/browser/signin/signin_manager_factory.h" | 15 #include "chrome/browser/signin/signin_manager_factory.h" |
| 17 #include "chrome/browser/signin/signin_manager_fake.h" | 16 #include "chrome/browser/signin/signin_manager_fake.h" |
| 18 #include "chrome/browser/signin/signin_names_io_thread.h" | 17 #include "chrome/browser/signin/signin_names_io_thread.h" |
| 19 #include "chrome/browser/sync/profile_sync_service_factory.h" | 18 #include "chrome/browser/sync/profile_sync_service_factory.h" |
| 20 #include "chrome/browser/sync/profile_sync_service_mock.h" | 19 #include "chrome/browser/sync/profile_sync_service_mock.h" |
| (...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 valid_gaia_url_, "", &request_, io_data.get())); | 788 valid_gaia_url_, "", &request_, io_data.get())); |
| 790 | 789 |
| 791 // Simulate a policy disabling sync by writing kSyncManaged directly. | 790 // Simulate a policy disabling sync by writing kSyncManaged directly. |
| 792 // We should still offer to sign in the browser. | 791 // We should still offer to sign in the browser. |
| 793 profile_->GetTestingPrefService()->SetManagedPref( | 792 profile_->GetTestingPrefService()->SetManagedPref( |
| 794 prefs::kSyncManaged, base::Value::CreateBooleanValue(true)); | 793 prefs::kSyncManaged, base::Value::CreateBooleanValue(true)); |
| 795 EXPECT_EQ(OneClickSigninHelper::CAN_OFFER, | 794 EXPECT_EQ(OneClickSigninHelper::CAN_OFFER, |
| 796 OneClickSigninHelper::CanOfferOnIOThreadImpl( | 795 OneClickSigninHelper::CanOfferOnIOThreadImpl( |
| 797 valid_gaia_url_, "", &request_, io_data.get())); | 796 valid_gaia_url_, "", &request_, io_data.get())); |
| 798 } | 797 } |
| OLD | NEW |