// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_MEDIA_PICTURE_IN_PICTURE_INTERSTITIAL_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_MEDIA_PICTURE_IN_PICTURE_INTERSTITIAL_H_ #include "third_party/blink/renderer/core/html/html_div_element.h" #include "third_party/blink/renderer/platform/timer.h" namespace blink { class DOMRectReadOnly; class HTMLImageElement; class HTMLVideoElement; class ResizeObserver; // Picture in Picture UI. DOM structure looks like: // // PictureInPictureInterstitial // (-internal-picture-in-picture-interstitial) // +-HTMLImageElement // | (-internal-media-interstitial-background-image) // \-HTMLDivElement // | (-internal-picture-in-picture-interstitial-message) class PictureInPictureInterstitial final : public HTMLDivElement { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_HTML_MEDIA_PICTURE_IN_PICTURE_INTERSTITIAL_H_