| 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 2267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2278 const char kTabStripLayoutType[] = "tab_strip_layout_type"; | 2278 const char kTabStripLayoutType[] = "tab_strip_layout_type"; |
| 2279 | 2279 |
| 2280 // Indicates that factory reset was requested from options page. | 2280 // Indicates that factory reset was requested from options page. |
| 2281 const char kFactoryResetRequested[] = "FactoryResetRequested"; | 2281 const char kFactoryResetRequested[] = "FactoryResetRequested"; |
| 2282 | 2282 |
| 2283 // Boolean recording whether we have showed a balloon that calls out the message | 2283 // Boolean recording whether we have showed a balloon that calls out the message |
| 2284 // center for desktop notifications. | 2284 // center for desktop notifications. |
| 2285 const char kMessageCenterShowedFirstRunBalloon[] = | 2285 const char kMessageCenterShowedFirstRunBalloon[] = |
| 2286 "message_center.showed_first_run_balloon"; | 2286 "message_center.showed_first_run_balloon"; |
| 2287 | 2287 |
| 2288 const char kMessageCenterForcedOnTaskbar[] = |
| 2289 "message_center.was_forced_on_taskbar"; |
| 2290 |
| 2288 // *************** SERVICE PREFS *************** | 2291 // *************** SERVICE PREFS *************** |
| 2289 // These are attached to the service process. | 2292 // These are attached to the service process. |
| 2290 | 2293 |
| 2291 const char kCloudPrintRoot[] = "cloud_print"; | 2294 const char kCloudPrintRoot[] = "cloud_print"; |
| 2292 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 2295 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
| 2293 // The unique id for this instance of the cloud print proxy. | 2296 // The unique id for this instance of the cloud print proxy. |
| 2294 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 2297 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
| 2295 // The GAIA auth token for Cloud Print | 2298 // The GAIA auth token for Cloud Print |
| 2296 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 2299 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
| 2297 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 2300 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2666 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2669 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2667 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2670 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2668 // title or an empty string if the bookmark node was removed. | 2671 // title or an empty string if the bookmark node was removed. |
| 2669 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2672 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2670 #endif | 2673 #endif |
| 2671 | 2674 |
| 2672 // Whether DNS Quick Check is disabled in proxy resolution. | 2675 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2673 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2676 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2674 | 2677 |
| 2675 } // namespace prefs | 2678 } // namespace prefs |
| OLD | NEW |