blob: 28a177e4533b128cf8f13685e2a87299d102c879 [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_RENDERER_MEDIA_MEDIA_FEEDS_H_
#define CHROME_RENDERER_MEDIA_MEDIA_FEEDS_H_
#include <optional>
class GURL;
namespace content {
class RenderFrame;
} // namespace content
class MediaFeeds {
public:
// Gets the Media Feed URL (if present).
static std::optional<GURL> GetMediaFeedURL(content::RenderFrame* frame);
};
#endif // CHROME_RENDERER_MEDIA_MEDIA_FEEDS_H_