blob: c5ba5cbb902cd21fedfbc1452dd1b2335e7b38fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright 2014 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.
#ifndef CHROMECAST_BASE_CHROMECAST_SWITCHES_H_
#define CHROMECAST_BASE_CHROMECAST_SWITCHES_H_
#include "build/build_config.h"
namespace switches {
// Media switches
extern const char kEnableCmaMediaPipeline[];
extern const char kHdmiSinkSupportedCodecs[];
// Content-implementation switches
extern const char kEnableLocalFileAccesses[];
// Metrics switches
extern const char kOverrideMetricsUploadUrl[];
// Network switches
extern const char kNoWifi[];
// Switches to communicate app state information
extern const char kLastLaunchedApp[];
extern const char kPreviousApp[];
} // namespace switches
#endif // CHROMECAST_BASE_CHROMECAST_SWITCHES_H_
|