| 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 2194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2205 | 2205 |
| 2206 // Indicates that rollback was requested alongside with factory reset. | 2206 // Indicates that rollback was requested alongside with factory reset. |
| 2207 // Makes sense only if kFactoryResetRequested is true. | 2207 // Makes sense only if kFactoryResetRequested is true. |
| 2208 const char kRollbackRequested[] = "RollbackRequested"; | 2208 const char kRollbackRequested[] = "RollbackRequested"; |
| 2209 | 2209 |
| 2210 // Boolean recording whether we have showed a balloon that calls out the message | 2210 // Boolean recording whether we have showed a balloon that calls out the message |
| 2211 // center for desktop notifications. | 2211 // center for desktop notifications. |
| 2212 const char kMessageCenterShowedFirstRunBalloon[] = | 2212 const char kMessageCenterShowedFirstRunBalloon[] = |
| 2213 "message_center.showed_first_run_balloon"; | 2213 "message_center.showed_first_run_balloon"; |
| 2214 | 2214 |
| 2215 const char kMessageCenterForcedOnTaskbar[] = |
| 2216 "message_center.was_forced_on_taskbar"; |
| 2217 |
| 2215 // *************** SERVICE PREFS *************** | 2218 // *************** SERVICE PREFS *************** |
| 2216 // These are attached to the service process. | 2219 // These are attached to the service process. |
| 2217 | 2220 |
| 2218 const char kCloudPrintRoot[] = "cloud_print"; | 2221 const char kCloudPrintRoot[] = "cloud_print"; |
| 2219 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 2222 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
| 2220 // The unique id for this instance of the cloud print proxy. | 2223 // The unique id for this instance of the cloud print proxy. |
| 2221 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 2224 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
| 2222 // The GAIA auth token for Cloud Print | 2225 // The GAIA auth token for Cloud Print |
| 2223 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 2226 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
| 2224 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 2227 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2596 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2599 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2597 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2600 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2598 // title or an empty string if the bookmark node was removed. | 2601 // title or an empty string if the bookmark node was removed. |
| 2599 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2602 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2600 #endif | 2603 #endif |
| 2601 | 2604 |
| 2602 // Whether DNS Quick Check is disabled in proxy resolution. | 2605 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2603 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2606 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2604 | 2607 |
| 2605 } // namespace prefs | 2608 } // namespace prefs |
| OLD | NEW |