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 "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/macros.h" | 7 #include "base/macros.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
10 | 10 |
(...skipping 988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
999 // asking the user to set up automatic updates when Keystone promotion is | 999 // asking the user to set up automatic updates when Keystone promotion is |
1000 // required. | 1000 // required. |
1001 const char kShowUpdatePromotionInfoBar[] = | 1001 const char kShowUpdatePromotionInfoBar[] = |
1002 "browser.show_update_promotion_info_bar"; | 1002 "browser.show_update_promotion_info_bar"; |
1003 #endif | 1003 #endif |
1004 | 1004 |
1005 // Boolean that is false if we should show window manager decorations. If | 1005 // Boolean that is false if we should show window manager decorations. If |
1006 // true, we draw a custom chrome frame (thicker title bar and blue border). | 1006 // true, we draw a custom chrome frame (thicker title bar and blue border). |
1007 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame"; | 1007 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame"; |
1008 | 1008 |
| 1009 const char kBackShortcutBubbleShownCount[] = |
| 1010 "browser.back_shortcut_bubble_shown_count"; |
| 1011 |
1009 #if defined(ENABLE_PLUGINS) | 1012 #if defined(ENABLE_PLUGINS) |
1010 // Which plugins have been whitelisted manually by the user. | 1013 // Which plugins have been whitelisted manually by the user. |
1011 const char kContentSettingsPluginWhitelist[] = | 1014 const char kContentSettingsPluginWhitelist[] = |
1012 "profile.content_settings.plugin_whitelist"; | 1015 "profile.content_settings.plugin_whitelist"; |
1013 #endif | 1016 #endif |
1014 | 1017 |
1015 // Double that indicates the default zoom level. | 1018 // Double that indicates the default zoom level. |
1016 const char kPartitionDefaultZoomLevel[] = "partition.default_zoom_level"; | 1019 const char kPartitionDefaultZoomLevel[] = "partition.default_zoom_level"; |
1017 | 1020 |
1018 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will | 1021 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will |
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2210 const char kMediaRouterEnableCloudServices[] = | 2213 const char kMediaRouterEnableCloudServices[] = |
2211 "media_router.cloudservices.enabled"; | 2214 "media_router.cloudservices.enabled"; |
2212 #endif // defined(GOOGLE_CHROME_BUILD) | 2215 #endif // defined(GOOGLE_CHROME_BUILD) |
2213 // Whether or not the Media Router first run flow has been acknowledged by the | 2216 // Whether or not the Media Router first run flow has been acknowledged by the |
2214 // user. | 2217 // user. |
2215 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2218 const char kMediaRouterFirstRunFlowAcknowledged[] = |
2216 "media_router.firstrunflow.acknowledged"; | 2219 "media_router.firstrunflow.acknowledged"; |
2217 #endif | 2220 #endif |
2218 | 2221 |
2219 } // namespace prefs | 2222 } // namespace prefs |
OLD | NEW |