blob: 5d6cb6fc35bb371bbcf9271a9b456a85b9839f3a [file] [log] [blame]
// Copyright 2018 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 DocumentPictureInPicture_h
#define DocumentPictureInPicture_h
#include "platform/heap/Handle.h"
namespace blink {
class Document;
class HTMLVideoElement;
class ScriptPromise;
class ScriptState;
class DocumentPictureInPicture {
STATIC_ONLY(DocumentPictureInPicture);
public:
static bool pictureInPictureEnabled(Document&);
static ScriptPromise exitPictureInPicture(ScriptState*, Document&);
static HTMLVideoElement* pictureInPictureElement(Document&);
};
} // namespace blink
#endif // DocumentPictureInPicture_h