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

Side by Side Diff: chrome/common/pref_names.cc

Issue 541103002: Introduce ChromeZoomLevelPref, make zoom level prefs independent of profile prefs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revised Created 6 years, 2 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
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/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after
1021 1021
1022 // Boolean that is true if we should unconditionally block third-party cookies, 1022 // Boolean that is true if we should unconditionally block third-party cookies,
1023 // regardless of other content settings. 1023 // regardless of other content settings.
1024 const char kBlockThirdPartyCookies[] = "profile.block_third_party_cookies"; 1024 const char kBlockThirdPartyCookies[] = "profile.block_third_party_cookies";
1025 1025
1026 // Boolean that is true when all locally stored site data (e.g. cookies, local 1026 // Boolean that is true when all locally stored site data (e.g. cookies, local
1027 // storage, etc..) should be deleted on exit. 1027 // storage, etc..) should be deleted on exit.
1028 const char kClearSiteDataOnExit[] = "profile.clear_site_data_on_exit"; 1028 const char kClearSiteDataOnExit[] = "profile.clear_site_data_on_exit";
1029 1029
1030 // Double that indicates the default zoom level. 1030 // Double that indicates the default zoom level.
1031 const char kDefaultZoomLevel[] = "profile.default_zoom_level"; 1031 const char kDefaultZoomLevel[] = "partition.default_zoom_level";
1032 // TODO(wjmaclean): Remove this.
battre 2014/10/06 14:33:51 Please add a bug number and explain why to remove
wjmaclean 2014/10/06 16:58:13 Done.
1033 const char kDefaultZoomLevelInProfile[] = "profile.default_zoom_level";
1032 1034
1033 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will 1035 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will
1034 // be displayed at the default zoom level. 1036 // be displayed at the default zoom level.
1035 const char kPerHostZoomLevels[] = "profile.per_host_zoom_levels"; 1037 const char kPerHostZoomLevels[] = "partition.per_host_zoom_levels";
1038 // TODO(wjmaclean): Remove this.
1039 const char kPerHostZoomLevelsInProfile[] = "profile.per_host_zoom_levels";
1036 1040
1037 // A dictionary that tracks the default data model to use for each section of 1041 // A dictionary that tracks the default data model to use for each section of
1038 // the dialog. 1042 // the dialog.
1039 const char kAutofillDialogAutofillDefault[] = "autofill.data_model_default"; 1043 const char kAutofillDialogAutofillDefault[] = "autofill.data_model_default";
1040 1044
1041 // Whether a user opted out of making purchases with Google Wallet; changed via 1045 // Whether a user opted out of making purchases with Google Wallet; changed via
1042 // the autofill dialog's account chooser and set explicitly on dialog submission 1046 // the autofill dialog's account chooser and set explicitly on dialog submission
1043 // (but not cancel). If this isn't set, the dialog assumes it's the first run. 1047 // (but not cancel). If this isn't set, the dialog assumes it's the first run.
1044 const char kAutofillDialogPayWithoutWallet[] = "autofill.pay_without_wallet"; 1048 const char kAutofillDialogPayWithoutWallet[] = "autofill.pay_without_wallet";
1045 1049
(...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after
2332 // Whether DNS Quick Check is disabled in proxy resolution. 2336 // Whether DNS Quick Check is disabled in proxy resolution.
2333 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2337 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2334 2338
2335 // Whether Guest Mode is enabled within the browser. 2339 // Whether Guest Mode is enabled within the browser.
2336 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; 2340 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled";
2337 2341
2338 // Whether Adding a new Person is enabled within the user manager. 2342 // Whether Adding a new Person is enabled within the user manager.
2339 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; 2343 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled";
2340 2344
2341 } // namespace prefs 2345 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698