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 2116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2127 | 2127 |
2128 // Boolean recording whether we have showed a balloon that calls out the message | 2128 // Boolean recording whether we have showed a balloon that calls out the message |
2129 // center for desktop notifications. | 2129 // center for desktop notifications. |
2130 const char kMessageCenterShowedFirstRunBalloon[] = | 2130 const char kMessageCenterShowedFirstRunBalloon[] = |
2131 "message_center.showed_first_run_balloon"; | 2131 "message_center.showed_first_run_balloon"; |
2132 | 2132 |
2133 // Boolean recording whether the user has disabled the notifications | 2133 // Boolean recording whether the user has disabled the notifications |
2134 // menubar or systray icon. | 2134 // menubar or systray icon. |
2135 const char kMessageCenterShowIcon[] = "message_center.show_icon"; | 2135 const char kMessageCenterShowIcon[] = "message_center.show_icon"; |
2136 | 2136 |
| 2137 const char kMessageCenterForcedOnTaskbar[] = |
| 2138 "message_center.was_forced_on_taskbar"; |
| 2139 |
2137 // *************** SERVICE PREFS *************** | 2140 // *************** SERVICE PREFS *************** |
2138 // These are attached to the service process. | 2141 // These are attached to the service process. |
2139 | 2142 |
2140 const char kCloudPrintRoot[] = "cloud_print"; | 2143 const char kCloudPrintRoot[] = "cloud_print"; |
2141 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 2144 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
2142 // The unique id for this instance of the cloud print proxy. | 2145 // The unique id for this instance of the cloud print proxy. |
2143 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 2146 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
2144 // The GAIA auth token for Cloud Print | 2147 // The GAIA auth token for Cloud Print |
2145 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 2148 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
2146 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 2149 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2514 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2517 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2515 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2518 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2516 // title or an empty string if the bookmark node was removed. | 2519 // title or an empty string if the bookmark node was removed. |
2517 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2520 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2518 #endif | 2521 #endif |
2519 | 2522 |
2520 // Whether DNS Quick Check is disabled in proxy resolution. | 2523 // Whether DNS Quick Check is disabled in proxy resolution. |
2521 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2524 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2522 | 2525 |
2523 } // namespace prefs | 2526 } // namespace prefs |
OLD | NEW |