blob: 910a90e50d32f80348885fd6ca000e12200469ec [file] [log] [blame]
// 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.
#ifndef CHROME_RENDERER_MEDIA_MEDIA_FEEDS_H_
#define CHROME_RENDERER_MEDIA_MEDIA_FEEDS_H_
#include "base/optional.h"
class GURL;
namespace content {
class RenderFrame;
} // namespace content
class MediaFeeds {
public:
// Gets the Media Feed URL (if present).
static base::Optional<GURL> GetMediaFeedURL(content::RenderFrame* frame);
};
#endif // CHROME_RENDERER_MEDIA_MEDIA_FEEDS_H_