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

Side by Side Diff: chrome/browser/ui/browser_ui_prefs.cc

Issue 271793003: components: Extract pref_registry component out of user_prefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 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 "chrome/browser/ui/browser_ui_prefs.h" 5 #include "chrome/browser/ui/browser_ui_prefs.h"
6 6
7 #include "base/prefs/pref_registry_simple.h" 7 #include "base/prefs/pref_registry_simple.h"
8 #include "base/prefs/pref_service.h" 8 #include "base/prefs/pref_service.h"
9 #include "chrome/browser/first_run/first_run.h" 9 #include "chrome/browser/first_run/first_run.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/common/pref_names.h" 11 #include "chrome/common/pref_names.h"
12 #include "components/pref_registry/pref_registry_syncable.h"
12 #include "components/translate/core/common/translate_pref_names.h" 13 #include "components/translate/core/common/translate_pref_names.h"
13 #include "components/user_prefs/pref_registry_syncable.h"
14 14
15 namespace chrome { 15 namespace chrome {
16 16
17 void RegisterBrowserPrefs(PrefRegistrySimple* registry) { 17 void RegisterBrowserPrefs(PrefRegistrySimple* registry) {
18 registry->RegisterIntegerPref(prefs::kOptionsWindowLastTabIndex, 0); 18 registry->RegisterIntegerPref(prefs::kOptionsWindowLastTabIndex, 0);
19 registry->RegisterBooleanPref(prefs::kAllowFileSelectionDialogs, true); 19 registry->RegisterBooleanPref(prefs::kAllowFileSelectionDialogs, true);
20 registry->RegisterIntegerPref(prefs::kShowFirstRunBubbleOption, 20 registry->RegisterIntegerPref(prefs::kShowFirstRunBubbleOption,
21 first_run::FIRST_RUN_BUBBLE_DONT_SHOW); 21 first_run::FIRST_RUN_BUBBLE_DONT_SHOW);
22 } 22 }
23 23
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 scoped_refptr<user_prefs::PrefRegistrySyncable> registry( 209 scoped_refptr<user_prefs::PrefRegistrySyncable> registry(
210 static_cast<user_prefs::PrefRegistrySyncable*>( 210 static_cast<user_prefs::PrefRegistrySyncable*>(
211 prefs->DeprecatedGetPrefRegistry())); 211 prefs->DeprecatedGetPrefRegistry()));
212 registry->RegisterDictionaryPref( 212 registry->RegisterDictionaryPref(
213 window_pref.c_str(), user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF); 213 window_pref.c_str(), user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
214 } 214 }
215 } 215 }
216 216
217 217
218 } // namespace chrome 218 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/ui/autofill/generated_credit_card_bubble_controller.cc ('k') | chrome/browser/ui/browser_view_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698