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 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1033 // asking the user to set up automatic updates when Keystone promotion is | 1033 // asking the user to set up automatic updates when Keystone promotion is |
1034 // required. | 1034 // required. |
1035 const char kShowUpdatePromotionInfoBar[] = | 1035 const char kShowUpdatePromotionInfoBar[] = |
1036 "browser.show_update_promotion_info_bar"; | 1036 "browser.show_update_promotion_info_bar"; |
1037 #endif | 1037 #endif |
1038 | 1038 |
1039 // Boolean that is false if we should show window manager decorations. If | 1039 // Boolean that is false if we should show window manager decorations. If |
1040 // true, we draw a custom chrome frame (thicker title bar and blue border). | 1040 // true, we draw a custom chrome frame (thicker title bar and blue border). |
1041 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame"; | 1041 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame"; |
1042 | 1042 |
1043 // The preferred position (which corner of screen) for desktop notifications. | |
1044 const char kDesktopNotificationPosition[] = | |
1045 "browser.desktop_notification_position"; | |
1046 | |
1047 // Dictionary of content settings applied to all hosts by default. | 1043 // Dictionary of content settings applied to all hosts by default. |
1048 const char kDefaultContentSettings[] = "profile.default_content_settings"; | 1044 const char kDefaultContentSettings[] = "profile.default_content_settings"; |
1049 | 1045 |
1050 // Boolean indicating whether the clear on exit pref was migrated to content | 1046 // Boolean indicating whether the clear on exit pref was migrated to content |
1051 // settings yet. | 1047 // settings yet. |
1052 const char kContentSettingsClearOnExitMigrated[] = | 1048 const char kContentSettingsClearOnExitMigrated[] = |
1053 "profile.content_settings.clear_on_exit_migrated"; | 1049 "profile.content_settings.clear_on_exit_migrated"; |
1054 | 1050 |
1055 // Version of the pattern format used to define content settings. | 1051 // Version of the pattern format used to define content settings. |
1056 const char kContentSettingsVersion[] = "profile.content_settings.pref_version"; | 1052 const char kContentSettingsVersion[] = "profile.content_settings.pref_version"; |
(...skipping 1535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2592 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2588 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2593 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2589 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2594 // title or an empty string if the bookmark node was removed. | 2590 // title or an empty string if the bookmark node was removed. |
2595 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2591 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2596 #endif | 2592 #endif |
2597 | 2593 |
2598 // Whether DNS Quick Check is disabled in proxy resolution. | 2594 // Whether DNS Quick Check is disabled in proxy resolution. |
2599 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2595 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2600 | 2596 |
2601 } // namespace prefs | 2597 } // namespace prefs |
OLD | NEW |