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/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 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1048 // asking the user to set up automatic updates when Keystone promotion is | 1048 // asking the user to set up automatic updates when Keystone promotion is |
1049 // required. | 1049 // required. |
1050 const char kShowUpdatePromotionInfoBar[] = | 1050 const char kShowUpdatePromotionInfoBar[] = |
1051 "browser.show_update_promotion_info_bar"; | 1051 "browser.show_update_promotion_info_bar"; |
1052 #endif | 1052 #endif |
1053 | 1053 |
1054 // Boolean that is false if we should show window manager decorations. If | 1054 // Boolean that is false if we should show window manager decorations. If |
1055 // true, we draw a custom chrome frame (thicker title bar and blue border). | 1055 // true, we draw a custom chrome frame (thicker title bar and blue border). |
1056 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame"; | 1056 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame"; |
1057 | 1057 |
1058 // Boolean that indicates whether the infobar explaining that search can be | |
1059 // done directly from the omnibox should be shown. | |
1060 const char kShowOmniboxSearchHint[] = "browser.show_omnibox_search_hint"; | |
1061 | |
1062 // The preferred position (which corner of screen) for desktop notifications. | 1058 // The preferred position (which corner of screen) for desktop notifications. |
1063 const char kDesktopNotificationPosition[] = | 1059 const char kDesktopNotificationPosition[] = |
1064 "browser.desktop_notification_position"; | 1060 "browser.desktop_notification_position"; |
1065 | 1061 |
1066 // Dictionary of content settings applied to all hosts by default. | 1062 // Dictionary of content settings applied to all hosts by default. |
1067 const char kDefaultContentSettings[] = "profile.default_content_settings"; | 1063 const char kDefaultContentSettings[] = "profile.default_content_settings"; |
1068 | 1064 |
1069 // Boolean indicating whether the clear on exit pref was migrated to content | 1065 // Boolean indicating whether the clear on exit pref was migrated to content |
1070 // settings yet. | 1066 // settings yet. |
1071 const char kContentSettingsClearOnExitMigrated[] = | 1067 const char kContentSettingsClearOnExitMigrated[] = |
(...skipping 1399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2471 // ping and the time of the last ping. | 2467 // ping and the time of the last ping. |
2472 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2468 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
2473 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2469 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
2474 | 2470 |
2475 // A string pref for storing the salt used to compute the pepper device ID. | 2471 // A string pref for storing the salt used to compute the pepper device ID. |
2476 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2472 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2477 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2473 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
2478 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2474 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2479 | 2475 |
2480 } // namespace prefs | 2476 } // namespace prefs |
OLD | NEW |