| // Copyright 2020 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "components/media_router/common/pref_names.h" |
| |
| namespace media_router { |
| namespace prefs { |
| |
| // Whether or not the user has explicitly set the cloud services preference |
| // through the first run flow. |
| const char kMediaRouterCloudServicesPrefSet[] = |
| "media_router.cloudservices.prefset"; |
| // Whether or not the user has enabled cloud services with Media Router. |
| const char kMediaRouterEnableCloudServices[] = |
| "media_router.cloudservices.enabled"; |
| // Whether or not the user has enabled Media Remoting. Defaults to true. |
| const char kMediaRouterMediaRemotingEnabled[] = |
| "media_router.media_remoting.enabled"; |
| // A list of website origins on which the user has chosen to use tab mirroring. |
| const char kMediaRouterTabMirroringSources[] = |
| "media_router.tab_mirroring_sources"; |
| |
| } // namespace prefs |
| } // namespace media_router |