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

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

Issue 2041293002: Add heuristics to limit showing of new backspace UI bubble. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/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 997 matching lines...) Expand 10 before | Expand all | Expand 10 after
1008 // asking the user to set up automatic updates when Keystone promotion is 1008 // asking the user to set up automatic updates when Keystone promotion is
1009 // required. 1009 // required.
1010 const char kShowUpdatePromotionInfoBar[] = 1010 const char kShowUpdatePromotionInfoBar[] =
1011 "browser.show_update_promotion_info_bar"; 1011 "browser.show_update_promotion_info_bar";
1012 #endif 1012 #endif
1013 1013
1014 // Boolean that is false if we should show window manager decorations. If 1014 // Boolean that is false if we should show window manager decorations. If
1015 // true, we draw a custom chrome frame (thicker title bar and blue border). 1015 // true, we draw a custom chrome frame (thicker title bar and blue border).
1016 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame"; 1016 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame";
1017 1017
1018 const char kBackShortcutBubbleShownCount[] =
1019 "browser.back_shortcut_bubble_shown_count";
1020
1018 #if defined(ENABLE_PLUGINS) 1021 #if defined(ENABLE_PLUGINS)
1019 // Which plugins have been whitelisted manually by the user. 1022 // Which plugins have been whitelisted manually by the user.
1020 const char kContentSettingsPluginWhitelist[] = 1023 const char kContentSettingsPluginWhitelist[] =
1021 "profile.content_settings.plugin_whitelist"; 1024 "profile.content_settings.plugin_whitelist";
1022 #endif 1025 #endif
1023 1026
1024 // Double that indicates the default zoom level. 1027 // Double that indicates the default zoom level.
1025 const char kPartitionDefaultZoomLevel[] = "partition.default_zoom_level"; 1028 const char kPartitionDefaultZoomLevel[] = "partition.default_zoom_level";
1026 1029
1027 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will 1030 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will
(...skipping 1179 matching lines...) Expand 10 before | Expand all | Expand 10 after
2207 const char kMediaRouterEnableCloudServices[] = 2210 const char kMediaRouterEnableCloudServices[] =
2208 "media_router.cloudservices.enabled"; 2211 "media_router.cloudservices.enabled";
2209 #endif // defined(GOOGLE_CHROME_BUILD) 2212 #endif // defined(GOOGLE_CHROME_BUILD)
2210 // Whether or not the Media Router first run flow has been acknowledged by the 2213 // Whether or not the Media Router first run flow has been acknowledged by the
2211 // user. 2214 // user.
2212 const char kMediaRouterFirstRunFlowAcknowledged[] = 2215 const char kMediaRouterFirstRunFlowAcknowledged[] =
2213 "media_router.firstrunflow.acknowledged"; 2216 "media_router.firstrunflow.acknowledged";
2214 #endif 2217 #endif
2215 2218
2216 } // namespace prefs 2219 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698