| 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 2212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2223 | 2223 |
| 2224 // Indicates that rollback was requested alongside with factory reset. | 2224 // Indicates that rollback was requested alongside with factory reset. |
| 2225 // Makes sense only if kFactoryResetRequested is true. | 2225 // Makes sense only if kFactoryResetRequested is true. |
| 2226 const char kRollbackRequested[] = "RollbackRequested"; | 2226 const char kRollbackRequested[] = "RollbackRequested"; |
| 2227 | 2227 |
| 2228 // Boolean recording whether we have showed a balloon that calls out the message | 2228 // Boolean recording whether we have showed a balloon that calls out the message |
| 2229 // center for desktop notifications. | 2229 // center for desktop notifications. |
| 2230 const char kMessageCenterShowedFirstRunBalloon[] = | 2230 const char kMessageCenterShowedFirstRunBalloon[] = |
| 2231 "message_center.showed_first_run_balloon"; | 2231 "message_center.showed_first_run_balloon"; |
| 2232 | 2232 |
| 2233 const char kMessageCenterForcedOnTaskbar[] = |
| 2234 "message_center.was_forced_on_taskbar"; |
| 2235 |
| 2233 // *************** SERVICE PREFS *************** | 2236 // *************** SERVICE PREFS *************** |
| 2234 // These are attached to the service process. | 2237 // These are attached to the service process. |
| 2235 | 2238 |
| 2236 const char kCloudPrintRoot[] = "cloud_print"; | 2239 const char kCloudPrintRoot[] = "cloud_print"; |
| 2237 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 2240 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
| 2238 // The unique id for this instance of the cloud print proxy. | 2241 // The unique id for this instance of the cloud print proxy. |
| 2239 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 2242 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
| 2240 // The GAIA auth token for Cloud Print | 2243 // The GAIA auth token for Cloud Print |
| 2241 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 2244 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
| 2242 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 2245 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2607 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2610 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2608 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2611 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2609 // title or an empty string if the bookmark node was removed. | 2612 // title or an empty string if the bookmark node was removed. |
| 2610 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2613 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2611 #endif | 2614 #endif |
| 2612 | 2615 |
| 2613 // Whether DNS Quick Check is disabled in proxy resolution. | 2616 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2614 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2617 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2615 | 2618 |
| 2616 } // namespace prefs | 2619 } // namespace prefs |
| OLD | NEW |