| 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/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 2216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2227 const char kMediaRouterCloudServicesPrefSet[] = | 2227 const char kMediaRouterCloudServicesPrefSet[] = |
| 2228 "media_router.cloudservices.prefset"; | 2228 "media_router.cloudservices.prefset"; |
| 2229 // Whether or not the user has enabled cloud services with Media Router. | 2229 // Whether or not the user has enabled cloud services with Media Router. |
| 2230 const char kMediaRouterEnableCloudServices[] = | 2230 const char kMediaRouterEnableCloudServices[] = |
| 2231 "media_router.cloudservices.enabled"; | 2231 "media_router.cloudservices.enabled"; |
| 2232 #endif // defined(GOOGLE_CHROME_BUILD) | 2232 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2233 // Whether or not the Media Router first run flow has been acknowledged by the | 2233 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2234 // user. | 2234 // user. |
| 2235 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2235 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2236 "media_router.firstrunflow.acknowledged"; | 2236 "media_router.firstrunflow.acknowledged"; |
| 2237 #endif | 2237 const char kMediaRouterAlwaysShowActionIcon[] = |
| 2238 "media_router.action.always_show"; |
| 2239 #endif // defined(ENABLE_MEDIA_ROUTER) |
| 2238 | 2240 |
| 2239 // The base64-encoded representation of the public key to use to validate origin | 2241 // The base64-encoded representation of the public key to use to validate origin |
| 2240 // trial token signatures. | 2242 // trial token signatures. |
| 2241 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2243 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2242 | 2244 |
| 2243 // A list of origin trial features to disable by policy. | 2245 // A list of origin trial features to disable by policy. |
| 2244 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2246 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2245 | 2247 |
| 2246 } // namespace prefs | 2248 } // namespace prefs |
| OLD | NEW |