| 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 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1022 // asking the user to set up automatic updates when Keystone promotion is | 1022 // asking the user to set up automatic updates when Keystone promotion is |
| 1023 // required. | 1023 // required. |
| 1024 const char kShowUpdatePromotionInfoBar[] = | 1024 const char kShowUpdatePromotionInfoBar[] = |
| 1025 "browser.show_update_promotion_info_bar"; | 1025 "browser.show_update_promotion_info_bar"; |
| 1026 #endif | 1026 #endif |
| 1027 | 1027 |
| 1028 // Boolean that is false if we should show window manager decorations. If | 1028 // Boolean that is false if we should show window manager decorations. If |
| 1029 // true, we draw a custom chrome frame (thicker title bar and blue border). | 1029 // true, we draw a custom chrome frame (thicker title bar and blue border). |
| 1030 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame"; | 1030 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame"; |
| 1031 | 1031 |
| 1032 // The preferred position (which corner of screen) for desktop notifications. | |
| 1033 const char kDesktopNotificationPosition[] = | |
| 1034 "browser.desktop_notification_position"; | |
| 1035 | |
| 1036 // Dictionary of content settings applied to all hosts by default. | 1032 // Dictionary of content settings applied to all hosts by default. |
| 1037 const char kDefaultContentSettings[] = "profile.default_content_settings"; | 1033 const char kDefaultContentSettings[] = "profile.default_content_settings"; |
| 1038 | 1034 |
| 1039 // Boolean indicating whether the clear on exit pref was migrated to content | 1035 // Boolean indicating whether the clear on exit pref was migrated to content |
| 1040 // settings yet. | 1036 // settings yet. |
| 1041 const char kContentSettingsClearOnExitMigrated[] = | 1037 const char kContentSettingsClearOnExitMigrated[] = |
| 1042 "profile.content_settings.clear_on_exit_migrated"; | 1038 "profile.content_settings.clear_on_exit_migrated"; |
| 1043 | 1039 |
| 1044 // Version of the pattern format used to define content settings. | 1040 // Version of the pattern format used to define content settings. |
| 1045 const char kContentSettingsVersion[] = "profile.content_settings.pref_version"; | 1041 const char kContentSettingsVersion[] = "profile.content_settings.pref_version"; |
| (...skipping 1525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2571 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2567 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2572 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2568 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2573 // title or an empty string if the bookmark node was removed. | 2569 // title or an empty string if the bookmark node was removed. |
| 2574 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2570 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2575 #endif | 2571 #endif |
| 2576 | 2572 |
| 2577 // Whether DNS Quick Check is disabled in proxy resolution. | 2573 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2578 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2574 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2579 | 2575 |
| 2580 } // namespace prefs | 2576 } // namespace prefs |
| OLD | NEW |