| 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 2238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2249 // Whether the update menu item was clicked. Used to facilitate logging whether | 2249 // Whether the update menu item was clicked. Used to facilitate logging whether |
| 2250 // Chrome was updated after the menu item is clicked. | 2250 // Chrome was updated after the menu item is clicked. |
| 2251 const char kClickedUpdateMenuItem[] = "omaha.clicked_update_menu_item"; | 2251 const char kClickedUpdateMenuItem[] = "omaha.clicked_update_menu_item"; |
| 2252 // The latest version of Chrome available when the user clicked on the update | 2252 // The latest version of Chrome available when the user clicked on the update |
| 2253 // menu item. | 2253 // menu item. |
| 2254 const char kLatestVersionWhenClickedUpdateMenuItem[] = | 2254 const char kLatestVersionWhenClickedUpdateMenuItem[] = |
| 2255 "omaha.latest_version_when_clicked_upate_menu_item"; | 2255 "omaha.latest_version_when_clicked_upate_menu_item"; |
| 2256 #endif | 2256 #endif |
| 2257 | 2257 |
| 2258 #if defined(ENABLE_MEDIA_ROUTER) | 2258 #if defined(ENABLE_MEDIA_ROUTER) |
| 2259 #if defined(GOOGLE_CHROME_BUILD) | |
| 2260 // Whether or not the user has explicitly set the cloud services preference | 2259 // Whether or not the user has explicitly set the cloud services preference |
| 2261 // through the first run flow. | 2260 // through the first run flow. |
| 2262 const char kMediaRouterCloudServicesPrefSet[] = | 2261 const char kMediaRouterCloudServicesPrefSet[] = |
| 2263 "media_router.cloudservices.prefset"; | 2262 "media_router.cloudservices.prefset"; |
| 2264 // Whether or not the user has enabled cloud services with Media Router. | 2263 // Whether or not the user has enabled cloud services with Media Router. |
| 2265 const char kMediaRouterEnableCloudServices[] = | 2264 const char kMediaRouterEnableCloudServices[] = |
| 2266 "media_router.cloudservices.enabled"; | 2265 "media_router.cloudservices.enabled"; |
| 2267 #endif // defined(GOOGLE_CHROME_BUILD) | |
| 2268 // Whether or not the Media Router first run flow has been acknowledged by the | 2266 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2269 // user. | 2267 // user. |
| 2270 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2268 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2271 "media_router.firstrunflow.acknowledged"; | 2269 "media_router.firstrunflow.acknowledged"; |
| 2272 #endif | 2270 #endif |
| 2273 | 2271 |
| 2274 // The base64-encoded representation of the public key to use to validate origin | 2272 // The base64-encoded representation of the public key to use to validate origin |
| 2275 // trial token signatures. | 2273 // trial token signatures. |
| 2276 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2274 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2277 | 2275 |
| 2278 // A list of origin trial features to disable by policy. | 2276 // A list of origin trial features to disable by policy. |
| 2279 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2277 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2280 | 2278 |
| 2281 // Policy that indicates the state of updates for the binary components. | 2279 // Policy that indicates the state of updates for the binary components. |
| 2282 const char kComponentUpdatesEnabled[] = | 2280 const char kComponentUpdatesEnabled[] = |
| 2283 "component_updates.component_updates_enabled"; | 2281 "component_updates.component_updates_enabled"; |
| 2284 | 2282 |
| 2285 } // namespace prefs | 2283 } // namespace prefs |
| OLD | NEW |