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 2141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2152 // Value of the enums in TabStrip::LayoutType as an int. | 2152 // Value of the enums in TabStrip::LayoutType as an int. |
2153 const char kTabStripLayoutType[] = "tab_strip_layout_type"; | 2153 const char kTabStripLayoutType[] = "tab_strip_layout_type"; |
2154 | 2154 |
2155 // If true, cloud policy for the user is not loaded when the user signs in. | 2155 // If true, cloud policy for the user is not loaded when the user signs in. |
2156 const char kDisableCloudPolicyOnSignin[] = | 2156 const char kDisableCloudPolicyOnSignin[] = |
2157 "policy.disable_cloud_policy_on_signin"; | 2157 "policy.disable_cloud_policy_on_signin"; |
2158 | 2158 |
2159 // Indicates that factory reset was requested from options page. | 2159 // Indicates that factory reset was requested from options page. |
2160 const char kFactoryResetRequested[] = "FactoryResetRequested"; | 2160 const char kFactoryResetRequested[] = "FactoryResetRequested"; |
2161 | 2161 |
| 2162 // Boolean recording whether we have showed a balloon that calls out the message |
| 2163 // center for desktop notifications. |
| 2164 const char kMessageCenterShowedFirstRunBalloon[] = |
| 2165 "message_center.showed_first_run_balloon"; |
| 2166 |
2162 // *************** SERVICE PREFS *************** | 2167 // *************** SERVICE PREFS *************** |
2163 // These are attached to the service process. | 2168 // These are attached to the service process. |
2164 | 2169 |
2165 const char kCloudPrintRoot[] = "cloud_print"; | 2170 const char kCloudPrintRoot[] = "cloud_print"; |
2166 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 2171 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
2167 // The unique id for this instance of the cloud print proxy. | 2172 // The unique id for this instance of the cloud print proxy. |
2168 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 2173 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
2169 // The GAIA auth token for Cloud Print | 2174 // The GAIA auth token for Cloud Print |
2170 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 2175 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
2171 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 2176 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2497 | 2502 |
2498 // How often the bubble has been shown. | 2503 // How often the bubble has been shown. |
2499 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2504 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
2500 | 2505 |
2501 // A string pref for storing the salt used to compute the pepper device ID. | 2506 // A string pref for storing the salt used to compute the pepper device ID. |
2502 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2507 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2503 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2508 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
2504 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2509 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2505 | 2510 |
2506 } // namespace prefs | 2511 } // namespace prefs |
OLD | NEW |