blob: a224697fce31fbf8ad262f5a46a6cfcfcda97ba1 (
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
|
// 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 "fuchsia/engine/common/cast_streaming.h"
#include "base/command_line.h"
#include "fuchsia/engine/switches.h"
#include "url/gurl.h"
namespace {
constexpr char kCastStreamingReceiverUrl[] = "data:cast_streaming_receiver";
} // namespace
bool IsCastStreamingEnabled() {
static bool is_cast_streaming_enabled =
base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableCastStreamingReceiver);
return is_cast_streaming_enabled;
}
bool IsCastStreamingMediaSourceUrl(const GURL& url) {
return url == kCastStreamingReceiverUrl;
}
|