blob: 68d020c8c2cfeec64b7273f6a9848f0bda1d4d50 [file] [log] [blame]
// Copyright 2017 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 CONTENT_PUBLIC_BROWSER_OVERLAY_WINDOW_H_
#define CONTENT_PUBLIC_BROWSER_OVERLAY_WINDOW_H_
#include <memory>
#include "ui/gfx/native_widget_types.h"
namespace gfx {
class Rect;
class Size;
}
namespace ui {
class Layer;
}
namespace content {
class PictureInPictureWindowController;
// This window will always float above other windows. The intention is to show
// content perpetually while the user is still interacting with the other
// browser windows.
class OverlayWindow {
public:
enum PlaybackState {
kPlaying = 0,
kPaused,
kEndOfVideo,
};
enum MutedState {
kMuted = 0,
kUnmuted,
kNoAudio,
};
OverlayWindow() = default;
virtual ~OverlayWindow() = default;
// Returns a created OverlayWindow. This is defined in the platform-specific
// implementation for the class.
static std::unique_ptr<OverlayWindow> Create(
PictureInPictureWindowController* controller);
virtual bool IsActive() const = 0;
virtual void Close() = 0;
virtual void ShowInactive() = 0;
virtual void Hide() = 0;
virtual bool IsVisible() const = 0;
virtual bool IsAlwaysOnTop() const = 0;
virtual ui::Layer* GetLayer() = 0;
// Retrieves the window's current bounds, including its window.
virtual gfx::Rect GetBounds() const = 0;
virtual void UpdateVideoSize(const gfx::Size& natural_size) = 0;
virtual void SetPlaybackState(PlaybackState playback_state) = 0;
virtual void SetAlwaysHidePlayPauseButton(bool is_visible) = 0;
virtual void SetMutedState(MutedState muted_state) = 0;
virtual void SetSkipAdButtonVisibility(bool is_visible) = 0;
virtual void SetNextTrackButtonVisibility(bool is_visible) = 0;
virtual void SetPreviousTrackButtonVisibility(bool is_visible) = 0;
// Retrieves the ui::Layers corresponding to the window and video.
virtual ui::Layer* GetWindowBackgroundLayer() = 0;
virtual ui::Layer* GetVideoLayer() = 0;
// Retrieves the bounds of the video.
virtual gfx::Rect GetVideoBounds() = 0;
private:
DISALLOW_COPY_AND_ASSIGN(OverlayWindow);
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_OVERLAY_WINDOW_H_