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

Side by Side Diff: chrome/browser/ui/sync/one_click_signin_helper_unittest.cc

Issue 12211105: Move remaining non-test, non-Chrome-specific Prefs code to base/prefs/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments, merge to LKGR. Created 7 years, 10 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 | Annotate | Revision Log
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 "base/prefs/pref_service.h"
5 #include "base/utf_string_conversions.h" 6 #include "base/utf_string_conversions.h"
6 #include "base/values.h" 7 #include "base/values.h"
7 #include "chrome/browser/content_settings/cookie_settings.h" 8 #include "chrome/browser/content_settings/cookie_settings.h"
8 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" 9 #include "chrome/browser/custom_handlers/protocol_handler_registry.h"
9 #include "chrome/browser/prefs/pref_service.h"
10 #include "chrome/browser/prefs/scoped_user_pref_update.h" 10 #include "chrome/browser/prefs/scoped_user_pref_update.h"
11 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/browser/profiles/profile_info_cache.h" 12 #include "chrome/browser/profiles/profile_info_cache.h"
13 #include "chrome/browser/profiles/profile_io_data.h" 13 #include "chrome/browser/profiles/profile_io_data.h"
14 #include "chrome/browser/profiles/profile_manager.h" 14 #include "chrome/browser/profiles/profile_manager.h"
15 #include "chrome/browser/signin/signin_manager_factory.h" 15 #include "chrome/browser/signin/signin_manager_factory.h"
16 #include "chrome/browser/signin/signin_manager_fake.h" 16 #include "chrome/browser/signin/signin_manager_fake.h"
17 #include "chrome/browser/signin/signin_names_io_thread.h" 17 #include "chrome/browser/signin/signin_names_io_thread.h"
18 #include "chrome/browser/sync/profile_sync_service_factory.h" 18 #include "chrome/browser/sync/profile_sync_service_factory.h"
19 #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
788 valid_gaia_url_, "", &request_, io_data.get())); 788 valid_gaia_url_, "", &request_, io_data.get()));
789 789
790 // Simulate a policy disabling sync by writing kSyncManaged directly. 790 // Simulate a policy disabling sync by writing kSyncManaged directly.
791 // We should still offer to sign in the browser. 791 // We should still offer to sign in the browser.
792 profile_->GetTestingPrefService()->SetManagedPref( 792 profile_->GetTestingPrefService()->SetManagedPref(
793 prefs::kSyncManaged, base::Value::CreateBooleanValue(true)); 793 prefs::kSyncManaged, base::Value::CreateBooleanValue(true));
794 EXPECT_EQ(OneClickSigninHelper::CAN_OFFER, 794 EXPECT_EQ(OneClickSigninHelper::CAN_OFFER,
795 OneClickSigninHelper::CanOfferOnIOThreadImpl( 795 OneClickSigninHelper::CanOfferOnIOThreadImpl(
796 valid_gaia_url_, "", &request_, io_data.get())); 796 valid_gaia_url_, "", &request_, io_data.get()));
797 } 797 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/sync/one_click_signin_helper.cc ('k') | chrome/browser/ui/sync/one_click_signin_sync_starter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698