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

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

Issue 393133002: Migrate HostZoomMap to live in StoragePartition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test compilation. Created 6 years, 4 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/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 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after
1023 1023
1024 // Boolean that is true if we should unconditionally block third-party cookies, 1024 // Boolean that is true if we should unconditionally block third-party cookies,
1025 // regardless of other content settings. 1025 // regardless of other content settings.
1026 const char kBlockThirdPartyCookies[] = "profile.block_third_party_cookies"; 1026 const char kBlockThirdPartyCookies[] = "profile.block_third_party_cookies";
1027 1027
1028 // Boolean that is true when all locally stored site data (e.g. cookies, local 1028 // Boolean that is true when all locally stored site data (e.g. cookies, local
1029 // storage, etc..) should be deleted on exit. 1029 // storage, etc..) should be deleted on exit.
1030 const char kClearSiteDataOnExit[] = "profile.clear_site_data_on_exit"; 1030 const char kClearSiteDataOnExit[] = "profile.clear_site_data_on_exit";
1031 1031
1032 // Double that indicates the default zoom level. 1032 // Double that indicates the default zoom level.
1033 const char kDefaultZoomLevel[] = "profile.default_zoom_level"; 1033 const char kDefaultZoomLevel[] = "partition.default_zoom_level";
1034 1034
1035 // 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
1036 // be displayed at the default zoom level. 1036 // be displayed at the default zoom level.
1037 const char kPerHostZoomLevels[] = "profile.per_host_zoom_levels"; 1037 const char kPerHostZoomLevels[] = "partition.per_host_zoom_levels";
1038 1038
1039 // A dictionary that tracks the default data model to use for each section of 1039 // A dictionary that tracks the default data model to use for each section of
1040 // the dialog. 1040 // the dialog.
1041 const char kAutofillDialogAutofillDefault[] = "autofill.data_model_default"; 1041 const char kAutofillDialogAutofillDefault[] = "autofill.data_model_default";
1042 1042
1043 // Whether a user opted out of making purchases with Google Wallet; changed via 1043 // Whether a user opted out of making purchases with Google Wallet; changed via
1044 // the autofill dialog's account chooser and set explicitly on dialog submission 1044 // the autofill dialog's account chooser and set explicitly on dialog submission
1045 // (but not cancel). If this isn't set, the dialog assumes it's the first run. 1045 // (but not cancel). If this isn't set, the dialog assumes it's the first run.
1046 const char kAutofillDialogPayWithoutWallet[] = "autofill.pay_without_wallet"; 1046 const char kAutofillDialogPayWithoutWallet[] = "autofill.pay_without_wallet";
1047 1047
(...skipping 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after
2336 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2336 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2337 #endif 2337 #endif
2338 2338
2339 // Whether DNS Quick Check is disabled in proxy resolution. 2339 // Whether DNS Quick Check is disabled in proxy resolution.
2340 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2340 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2341 2341
2342 // Whether Guest Mode is enabled within the browser. 2342 // Whether Guest Mode is enabled within the browser.
2343 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; 2343 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled";
2344 2344
2345 } // namespace prefs 2345 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698