| 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 2102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2113 | 2113 |
| 2114 // Indicates that rollback was requested alongside with factory reset. | 2114 // Indicates that rollback was requested alongside with factory reset. |
| 2115 // Makes sense only if kFactoryResetRequested is true. | 2115 // Makes sense only if kFactoryResetRequested is true. |
| 2116 const char kRollbackRequested[] = "RollbackRequested"; | 2116 const char kRollbackRequested[] = "RollbackRequested"; |
| 2117 | 2117 |
| 2118 // Boolean recording whether we have showed a balloon that calls out the message | 2118 // Boolean recording whether we have showed a balloon that calls out the message |
| 2119 // center for desktop notifications. | 2119 // center for desktop notifications. |
| 2120 const char kMessageCenterShowedFirstRunBalloon[] = | 2120 const char kMessageCenterShowedFirstRunBalloon[] = |
| 2121 "message_center.showed_first_run_balloon"; | 2121 "message_center.showed_first_run_balloon"; |
| 2122 | 2122 |
| 2123 const char kMessageCenterForcedOnTaskbar[] = | |
| 2124 "message_center.was_forced_on_taskbar"; | |
| 2125 | |
| 2126 // *************** SERVICE PREFS *************** | 2123 // *************** SERVICE PREFS *************** |
| 2127 // These are attached to the service process. | 2124 // These are attached to the service process. |
| 2128 | 2125 |
| 2129 const char kCloudPrintRoot[] = "cloud_print"; | 2126 const char kCloudPrintRoot[] = "cloud_print"; |
| 2130 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 2127 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
| 2131 // The unique id for this instance of the cloud print proxy. | 2128 // The unique id for this instance of the cloud print proxy. |
| 2132 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 2129 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
| 2133 // The GAIA auth token for Cloud Print | 2130 // The GAIA auth token for Cloud Print |
| 2134 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 2131 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
| 2135 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 2132 // 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... |
| 2503 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2500 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2504 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2501 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2505 // title or an empty string if the bookmark node was removed. | 2502 // title or an empty string if the bookmark node was removed. |
| 2506 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2503 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2507 #endif | 2504 #endif |
| 2508 | 2505 |
| 2509 // Whether DNS Quick Check is disabled in proxy resolution. | 2506 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2510 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2507 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2511 | 2508 |
| 2512 } // namespace prefs | 2509 } // namespace prefs |
| OLD | NEW |