blob: 3b3f3d62da740409101f48e9bdc022462cbb4363 [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 THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_FULLSCREEN_VIDEO_STATUS_H_
#define THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_FULLSCREEN_VIDEO_STATUS_H_
namespace blink {
enum class WebFullscreenVideoStatus {
// Video is not effectively fullscreen.
kNotEffectivelyFullscreen = 0,
// Video is fullscreen and allowed to enter Picture-in-Picture.
kFullscreenAndPictureInPictureEnabled,
// Video is fullscreen and is not allowed to enter Picture-in-Picture.
kFullscreenAndPictureInPictureDisabled,
// The maximum number of fullscreen status.
kMaxValue = kFullscreenAndPictureInPictureDisabled,
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_FULLSCREEN_VIDEO_STATUS_H_