Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: chrome/common/pref_names.cc

Issue 2487673003: [Media Router] Make per-hostname cast mode selections persist (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 2235 matching lines...) Expand 10 before | Expand all | Expand 10 after
2246 // through the first run flow. 2246 // through the first run flow.
2247 const char kMediaRouterCloudServicesPrefSet[] = 2247 const char kMediaRouterCloudServicesPrefSet[] =
2248 "media_router.cloudservices.prefset"; 2248 "media_router.cloudservices.prefset";
2249 // Whether or not the user has enabled cloud services with Media Router. 2249 // Whether or not the user has enabled cloud services with Media Router.
2250 const char kMediaRouterEnableCloudServices[] = 2250 const char kMediaRouterEnableCloudServices[] =
2251 "media_router.cloudservices.enabled"; 2251 "media_router.cloudservices.enabled";
2252 // Whether or not the Media Router first run flow has been acknowledged by the 2252 // Whether or not the Media Router first run flow has been acknowledged by the
2253 // user. 2253 // user.
2254 const char kMediaRouterFirstRunFlowAcknowledged[] = 2254 const char kMediaRouterFirstRunFlowAcknowledged[] =
2255 "media_router.firstrunflow.acknowledged"; 2255 "media_router.firstrunflow.acknowledged";
2256 // A dictionary mapping website hostnames to user's preference for the cast mode
2257 // to use on that website.
2258 const char kMediaRouterCastModeSelections[] =
2259 "media_router.cast_mode_selections";
2256 #endif 2260 #endif
2257 2261
2258 // The base64-encoded representation of the public key to use to validate origin 2262 // The base64-encoded representation of the public key to use to validate origin
2259 // trial token signatures. 2263 // trial token signatures.
2260 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; 2264 const char kOriginTrialPublicKey[] = "origin_trials.public_key";
2261 2265
2262 // A list of origin trial features to disable by policy. 2266 // A list of origin trial features to disable by policy.
2263 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; 2267 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features";
2264 2268
2265 // Policy that indicates the state of updates for the binary components. 2269 // Policy that indicates the state of updates for the binary components.
2266 const char kComponentUpdatesEnabled[] = 2270 const char kComponentUpdatesEnabled[] =
2267 "component_updates.component_updates_enabled"; 2271 "component_updates.component_updates_enabled";
2268 2272
2269 } // namespace prefs 2273 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698