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

Side by Side Diff: chrome/browser/media/router/media_router_feature.cc

Issue 1415333002: [Media Router] Add experiment control logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/media/router/media_router_feature.h"
6
7 #if !defined(OS_ANDROID)
8 #include "extensions/common/feature_switch.h"
9 #endif
10
11 namespace media_router {
12
13 bool MediaRouterEnabled() {
14 #if defined(OS_ANDROID)
15 return true;
16 #else
17 return extensions::FeatureSwitch::media_router()->IsEnabled();
18 #endif // defined(OS_ANDROID)
19 }
20
21 } // namespace media_router
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698