| 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/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 2220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2231 // Whether the update menu item was clicked. Used to facilitate logging whether | 2231 // Whether the update menu item was clicked. Used to facilitate logging whether |
| 2232 // Chrome was updated after the menu item is clicked. | 2232 // Chrome was updated after the menu item is clicked. |
| 2233 const char kClickedUpdateMenuItem[] = "omaha.clicked_update_menu_item"; | 2233 const char kClickedUpdateMenuItem[] = "omaha.clicked_update_menu_item"; |
| 2234 // The latest version of Chrome available when the user clicked on the update | 2234 // The latest version of Chrome available when the user clicked on the update |
| 2235 // menu item. | 2235 // menu item. |
| 2236 const char kLatestVersionWhenClickedUpdateMenuItem[] = | 2236 const char kLatestVersionWhenClickedUpdateMenuItem[] = |
| 2237 "omaha.latest_version_when_clicked_upate_menu_item"; | 2237 "omaha.latest_version_when_clicked_upate_menu_item"; |
| 2238 #endif | 2238 #endif |
| 2239 | 2239 |
| 2240 #if defined(ENABLE_MEDIA_ROUTER) | 2240 #if defined(ENABLE_MEDIA_ROUTER) |
| 2241 #if defined(GOOGLE_CHROME_BUILD) | |
| 2242 // Whether or not the user has explicitly set the cloud services preference | 2241 // Whether or not the user has explicitly set the cloud services preference |
| 2243 // through the first run flow. | 2242 // through the first run flow. |
| 2244 const char kMediaRouterCloudServicesPrefSet[] = | 2243 const char kMediaRouterCloudServicesPrefSet[] = |
| 2245 "media_router.cloudservices.prefset"; | 2244 "media_router.cloudservices.prefset"; |
| 2246 // Whether or not the user has enabled cloud services with Media Router. | 2245 // Whether or not the user has enabled cloud services with Media Router. |
| 2247 const char kMediaRouterEnableCloudServices[] = | 2246 const char kMediaRouterEnableCloudServices[] = |
| 2248 "media_router.cloudservices.enabled"; | 2247 "media_router.cloudservices.enabled"; |
| 2249 #endif // defined(GOOGLE_CHROME_BUILD) | |
| 2250 // Whether or not the Media Router first run flow has been acknowledged by the | 2248 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2251 // user. | 2249 // user. |
| 2252 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2250 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2253 "media_router.firstrunflow.acknowledged"; | 2251 "media_router.firstrunflow.acknowledged"; |
| 2254 #endif | 2252 #endif |
| 2255 | 2253 |
| 2256 // The base64-encoded representation of the public key to use to validate origin | 2254 // The base64-encoded representation of the public key to use to validate origin |
| 2257 // trial token signatures. | 2255 // trial token signatures. |
| 2258 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2256 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2259 | 2257 |
| 2260 // A list of origin trial features to disable by policy. | 2258 // A list of origin trial features to disable by policy. |
| 2261 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2259 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2262 | 2260 |
| 2263 // Policy that indicates the state of updates for the binary components. | 2261 // Policy that indicates the state of updates for the binary components. |
| 2264 const char kComponentUpdatesEnabled[] = | 2262 const char kComponentUpdatesEnabled[] = |
| 2265 "component_updates.component_updates_enabled"; | 2263 "component_updates.component_updates_enabled"; |
| 2266 | 2264 |
| 2267 } // namespace prefs | 2265 } // namespace prefs |
| OLD | NEW |