// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/cast_streaming/common/public/cast_streaming_url.h" #include "base/strings/string_util.h" namespace cast_streaming { namespace { // TODO(crbug.com/40182730): Update this constant to a proper scheme. constexpr char kCastStreamingReceiverUrl[] = …; } // namespace GURL GetCastStreamingMediaSourceUrl() { … } bool IsCastStreamingMediaSourceUrl(const GURL& url) { … } } // namespace cast_streaming