2016-07-30 19:35:14 +00:00
|
|
|
// Copyright (c) 2016 GitHub, Inc.
|
2016-07-05 19:33:22 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2016-08-03 02:01:35 +00:00
|
|
|
#ifndef ATOM_BROWSER_OSR_OSR_RENDER_WIDGET_HOST_VIEW_H_
|
|
|
|
#define ATOM_BROWSER_OSR_OSR_RENDER_WIDGET_HOST_VIEW_H_
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2017-03-05 15:18:57 +00:00
|
|
|
#include <set>
|
2016-07-31 10:19:56 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2016-08-03 02:01:35 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
2016-07-27 12:36:22 +00:00
|
|
|
|
2016-08-03 02:01:35 +00:00
|
|
|
#include "atom/browser/native_window.h"
|
2016-09-16 18:43:07 +00:00
|
|
|
#include "atom/browser/native_window_observer.h"
|
2016-08-03 02:01:35 +00:00
|
|
|
#include "atom/browser/osr/osr_output_device.h"
|
2017-05-21 17:55:19 +00:00
|
|
|
#include "atom/browser/osr/osr_view_proxy.h"
|
2016-07-29 22:51:19 +00:00
|
|
|
#include "base/process/kill.h"
|
2016-07-05 19:33:22 +00:00
|
|
|
#include "base/threading/thread.h"
|
2016-07-25 13:55:00 +00:00
|
|
|
#include "base/time/time.h"
|
2017-12-04 21:35:35 +00:00
|
|
|
#include "components/viz/common/frame_sinks/begin_frame_args.h"
|
2017-12-04 21:34:15 +00:00
|
|
|
#include "components/viz/common/frame_sinks/begin_frame_source.h"
|
2017-12-18 09:40:36 +00:00
|
|
|
#include "components/viz/common/quads/compositor_frame.h"
|
2018-05-10 14:58:17 +00:00
|
|
|
#include "components/viz/common/surfaces/parent_local_surface_id_allocator.h"
|
2017-03-04 02:09:16 +00:00
|
|
|
#include "content/browser/frame_host/render_widget_host_view_guest.h"
|
2016-08-03 02:01:35 +00:00
|
|
|
#include "content/browser/renderer_host/delegated_frame_host.h"
|
2018-08-20 16:54:31 +00:00
|
|
|
#include "content/browser/renderer_host/input/mouse_wheel_phase_handler.h"
|
2016-08-03 02:01:35 +00:00
|
|
|
#include "content/browser/renderer_host/render_widget_host_impl.h"
|
|
|
|
#include "content/browser/renderer_host/render_widget_host_view_base.h"
|
2017-03-14 11:56:24 +00:00
|
|
|
#include "content/browser/web_contents/web_contents_view.h"
|
2018-07-20 16:08:18 +00:00
|
|
|
#include "third_party/blink/public/platform/web_vector.h"
|
2018-04-18 01:44:10 +00:00
|
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
2016-08-26 22:30:02 +00:00
|
|
|
#include "ui/base/ime/text_input_client.h"
|
2016-07-05 19:33:22 +00:00
|
|
|
#include "ui/compositor/compositor.h"
|
|
|
|
#include "ui/compositor/layer_delegate.h"
|
|
|
|
#include "ui/compositor/layer_owner.h"
|
2016-08-03 02:01:35 +00:00
|
|
|
#include "ui/gfx/geometry/point.h"
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2016-07-18 14:16:23 +00:00
|
|
|
#if defined(OS_WIN)
|
2016-07-05 19:33:22 +00:00
|
|
|
#include "ui/gfx/win/window_impl.h"
|
2016-07-18 14:16:23 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
#include "content/browser/renderer_host/browser_compositor_view_mac.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
#ifdef __OBJC__
|
|
|
|
@class CALayer;
|
|
|
|
@class NSWindow;
|
|
|
|
#else
|
|
|
|
class CALayer;
|
|
|
|
class NSWindow;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2018-10-11 13:14:01 +00:00
|
|
|
namespace content {
|
|
|
|
class CursorManager;
|
|
|
|
} // namespace content
|
|
|
|
|
2016-07-05 19:33:22 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2016-07-27 18:31:03 +00:00
|
|
|
class AtomCopyFrameGenerator;
|
|
|
|
class AtomBeginFrameTimer;
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2016-08-05 12:13:34 +00:00
|
|
|
#if defined(OS_MACOSX)
|
2016-09-06 08:24:37 +00:00
|
|
|
class MacHelper;
|
2016-08-05 12:13:34 +00:00
|
|
|
#endif
|
2016-09-06 08:24:37 +00:00
|
|
|
|
2018-10-05 18:03:35 +00:00
|
|
|
class OffScreenRenderWidgetHostView : public content::RenderWidgetHostViewBase,
|
|
|
|
public ui::CompositorDelegate,
|
2016-11-30 07:30:03 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
2018-10-05 18:03:35 +00:00
|
|
|
public content::DelegatedFrameHostClient,
|
2016-11-30 07:30:03 +00:00
|
|
|
#endif
|
2018-10-05 18:03:35 +00:00
|
|
|
public NativeWindowObserver,
|
|
|
|
public OffscreenViewProxyObserver {
|
2016-07-31 10:19:56 +00:00
|
|
|
public:
|
2016-08-03 04:46:34 +00:00
|
|
|
OffScreenRenderWidgetHostView(bool transparent,
|
2018-01-25 13:46:30 +00:00
|
|
|
bool painting,
|
|
|
|
int frame_rate,
|
2016-08-04 04:03:24 +00:00
|
|
|
const OnPaintCallback& callback,
|
2016-08-03 04:46:34 +00:00
|
|
|
content::RenderWidgetHost* render_widget_host,
|
2017-03-04 02:09:16 +00:00
|
|
|
OffScreenRenderWidgetHostView* parent_host_view,
|
2016-08-03 04:46:34 +00:00
|
|
|
NativeWindow* native_window);
|
|
|
|
~OffScreenRenderWidgetHostView() override;
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2018-10-05 18:03:35 +00:00
|
|
|
content::BrowserAccessibilityManager* CreateBrowserAccessibilityManager(
|
|
|
|
content::BrowserAccessibilityDelegate*,
|
|
|
|
bool) override;
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
// content::RenderWidgetHostView:
|
2016-07-31 10:19:56 +00:00
|
|
|
void InitAsChild(gfx::NativeView) override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void SetSize(const gfx::Size&) override;
|
|
|
|
void SetBounds(const gfx::Rect&) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
gfx::NativeView GetNativeView(void) const override;
|
|
|
|
gfx::NativeViewAccessible GetNativeViewAccessible(void) override;
|
|
|
|
ui::TextInputClient* GetTextInputClient() override;
|
|
|
|
void Focus(void) override;
|
|
|
|
bool HasFocus(void) const override;
|
2018-10-05 18:03:35 +00:00
|
|
|
uint32_t GetCaptureSequenceNumber() const override;
|
2016-07-31 10:19:56 +00:00
|
|
|
bool IsSurfaceAvailableForCopy(void) const override;
|
|
|
|
void Show(void) override;
|
|
|
|
void Hide(void) override;
|
|
|
|
bool IsShowing(void) override;
|
2018-10-05 18:03:35 +00:00
|
|
|
void EnsureSurfaceSynchronizedForLayoutTest() override;
|
2016-07-31 10:19:56 +00:00
|
|
|
gfx::Rect GetViewBounds(void) const override;
|
|
|
|
gfx::Size GetVisibleViewportSize() const override;
|
|
|
|
void SetInsets(const gfx::Insets&) override;
|
2016-08-01 11:27:39 +00:00
|
|
|
void SetBackgroundColor(SkColor color) override;
|
2018-10-05 18:03:35 +00:00
|
|
|
base::Optional<SkColor> GetBackgroundColor() const override;
|
|
|
|
void UpdateBackgroundColor() override;
|
2016-07-31 10:19:56 +00:00
|
|
|
bool LockMouse(void) override;
|
|
|
|
void UnlockMouse(void) override;
|
2018-08-30 22:44:35 +00:00
|
|
|
void TakeFallbackContentFrom(content::RenderWidgetHostView* view) override;
|
2016-11-30 07:30:03 +00:00
|
|
|
void SetNeedsBeginFrames(bool needs_begin_frames) override;
|
2018-05-15 01:59:22 +00:00
|
|
|
void SetWantsAnimateOnlyBeginFrames() override;
|
2016-07-31 10:19:56 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
void SetActive(bool active) override;
|
|
|
|
void ShowDefinitionForSelection() override;
|
|
|
|
void SpeakSelection() override;
|
2018-08-20 16:54:31 +00:00
|
|
|
bool ShouldContinueToPauseForFrame() override;
|
2018-08-30 22:44:35 +00:00
|
|
|
bool UpdateNSViewAndDisplay();
|
2016-07-31 10:19:56 +00:00
|
|
|
#endif // defined(OS_MACOSX)
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
// content::RenderWidgetHostViewBase:
|
2017-07-08 19:25:15 +00:00
|
|
|
void DidCreateNewRendererCompositorFrameSink(
|
2017-12-04 21:35:12 +00:00
|
|
|
viz::mojom::CompositorFrameSinkClient* renderer_compositor_frame_sink)
|
2017-07-08 19:25:15 +00:00
|
|
|
override;
|
2018-05-15 01:59:22 +00:00
|
|
|
void SubmitCompositorFrame(
|
|
|
|
const viz::LocalSurfaceId& local_surface_id,
|
|
|
|
viz::CompositorFrame frame,
|
2018-10-05 18:03:35 +00:00
|
|
|
base::Optional<viz::HitTestRegionList> hit_test_region_list) override;
|
2017-07-08 19:25:15 +00:00
|
|
|
|
2016-07-31 10:19:56 +00:00
|
|
|
void ClearCompositorFrame(void) override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void InitAsPopup(content::RenderWidgetHostView* rwhv,
|
|
|
|
const gfx::Rect& rect) override;
|
|
|
|
void InitAsFullscreen(content::RenderWidgetHostView*) override;
|
|
|
|
void UpdateCursor(const content::WebCursor&) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetIsLoading(bool is_loading) override;
|
|
|
|
void TextInputStateChanged(const content::TextInputState& params) override;
|
|
|
|
void ImeCancelComposition(void) override;
|
|
|
|
void RenderProcessGone(base::TerminationStatus, int) override;
|
|
|
|
void Destroy(void) override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void SetTooltipText(const base::string16&) override;
|
2018-10-11 13:14:01 +00:00
|
|
|
content::CursorManager* GetCursorManager() override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void SelectionBoundsChanged(
|
|
|
|
const ViewHostMsg_SelectionBounds_Params&) override;
|
2018-05-15 01:59:22 +00:00
|
|
|
void CopyFromSurface(
|
|
|
|
const gfx::Rect& src_rect,
|
|
|
|
const gfx::Size& output_size,
|
|
|
|
base::OnceCallback<void(const SkBitmap&)> callback) override;
|
|
|
|
void GetScreenInfo(content::ScreenInfo* results) const override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void InitAsGuest(content::RenderWidgetHostView*,
|
|
|
|
content::RenderWidgetHostViewGuest*) override;
|
2018-10-05 18:03:35 +00:00
|
|
|
void TransformPointToRootSurface(gfx::PointF* point) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
gfx::Rect GetBoundsInRootWindow(void) override;
|
2018-05-15 01:59:22 +00:00
|
|
|
viz::SurfaceId GetCurrentSurfaceId() const override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void ImeCompositionRangeChanged(const gfx::Range&,
|
|
|
|
const std::vector<gfx::Rect>&) override;
|
2018-05-15 01:59:22 +00:00
|
|
|
gfx::Size GetCompositorViewportPixelSize() const override;
|
2018-10-11 13:14:01 +00:00
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
viz::ScopedSurfaceIdAllocator DidUpdateVisualProperties(
|
|
|
|
const cc::RenderFrameMetadata& metadata) override;
|
|
|
|
#endif
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2017-03-14 11:56:24 +00:00
|
|
|
content::RenderWidgetHostViewBase* CreateViewForWidget(
|
2018-04-18 01:44:10 +00:00
|
|
|
content::RenderWidgetHost*,
|
|
|
|
content::RenderWidgetHost*,
|
|
|
|
content::WebContentsView*) override;
|
2017-03-14 11:56:24 +00:00
|
|
|
|
2016-11-30 07:30:03 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
2016-08-03 04:46:34 +00:00
|
|
|
// content::DelegatedFrameHostClient:
|
2016-07-05 19:33:22 +00:00
|
|
|
int DelegatedFrameHostGetGpuMemoryBufferClientId(void) const;
|
2018-04-18 01:44:10 +00:00
|
|
|
ui::Layer* DelegatedFrameHostGetLayer(void) const override;
|
2016-07-18 14:16:23 +00:00
|
|
|
bool DelegatedFrameHostIsVisible(void) const override;
|
2018-05-15 01:59:22 +00:00
|
|
|
SkColor DelegatedFrameHostGetGutterColor() const override;
|
|
|
|
void OnFirstSurfaceActivation(const viz::SurfaceInfo& surface_info) override;
|
|
|
|
void OnBeginFrame(base::TimeTicks frame_time) override;
|
|
|
|
void OnFrameTokenChanged(uint32_t frame_token) override;
|
|
|
|
void DidReceiveFirstFrameAfterNavigation() override;
|
2016-11-30 07:30:03 +00:00
|
|
|
#endif // !defined(OS_MACOSX)
|
2016-07-26 14:52:43 +00:00
|
|
|
|
2018-10-11 13:14:01 +00:00
|
|
|
const viz::LocalSurfaceId& GetLocalSurfaceId() const override;
|
|
|
|
const viz::FrameSinkId& GetFrameSinkId() const override;
|
2018-08-20 16:54:31 +00:00
|
|
|
|
|
|
|
void DidNavigate() override;
|
|
|
|
|
2018-10-05 18:03:35 +00:00
|
|
|
bool TransformPointToLocalCoordSpaceLegacy(
|
|
|
|
const gfx::PointF& point,
|
|
|
|
const viz::SurfaceId& original_surface,
|
|
|
|
gfx::PointF* transformed_point) override;
|
2017-04-05 08:31:22 +00:00
|
|
|
bool TransformPointToCoordSpaceForView(
|
2018-05-15 01:59:22 +00:00
|
|
|
const gfx::PointF& point,
|
2017-04-05 08:31:22 +00:00
|
|
|
RenderWidgetHostViewBase* target_view,
|
2018-10-05 18:03:35 +00:00
|
|
|
gfx::PointF* transformed_point,
|
|
|
|
viz::EventSource source = viz::EventSource::ANY) override;
|
2017-04-05 08:31:22 +00:00
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
// ui::CompositorDelegate:
|
2017-12-18 09:31:54 +00:00
|
|
|
std::unique_ptr<viz::SoftwareOutputDevice> CreateSoftwareOutputDevice(
|
2016-07-27 16:24:58 +00:00
|
|
|
ui::Compositor* compositor) override;
|
2016-08-03 04:46:34 +00:00
|
|
|
|
|
|
|
bool InstallTransparency();
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2016-09-16 18:43:07 +00:00
|
|
|
// NativeWindowObserver:
|
|
|
|
void OnWindowResize() override;
|
2016-09-19 07:51:03 +00:00
|
|
|
void OnWindowClosed() override;
|
2016-09-16 18:43:07 +00:00
|
|
|
|
2016-07-18 14:16:23 +00:00
|
|
|
void OnBeginFrameTimerTick();
|
2018-04-18 01:44:10 +00:00
|
|
|
void SendBeginFrame(base::TimeTicks frame_time, base::TimeDelta vsync_period);
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
#if defined(OS_MACOSX)
|
2017-04-05 08:31:22 +00:00
|
|
|
void CreatePlatformWidget(bool is_guest_view_hack);
|
2016-07-30 13:40:16 +00:00
|
|
|
void DestroyPlatformWidget();
|
2018-08-20 16:54:31 +00:00
|
|
|
SkColor last_frame_root_background_color() const {
|
|
|
|
return last_frame_root_background_color_;
|
|
|
|
}
|
2016-08-03 04:46:34 +00:00
|
|
|
#endif
|
2016-07-30 13:40:16 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void CancelWidget();
|
|
|
|
void AddGuestHostView(OffScreenRenderWidgetHostView* guest_host);
|
|
|
|
void RemoveGuestHostView(OffScreenRenderWidgetHostView* guest_host);
|
2017-05-21 17:55:19 +00:00
|
|
|
void AddViewProxy(OffscreenViewProxy* proxy);
|
|
|
|
void RemoveViewProxy(OffscreenViewProxy* proxy);
|
2018-05-04 06:45:12 +00:00
|
|
|
void ProxyViewDestroyed(OffscreenViewProxy* proxy) override;
|
2017-03-04 02:09:16 +00:00
|
|
|
|
|
|
|
void RegisterGuestViewFrameSwappedCallback(
|
|
|
|
content::RenderWidgetHostViewGuest* guest_host_view);
|
|
|
|
void OnGuestViewFrameSwapped(
|
|
|
|
content::RenderWidgetHostViewGuest* guest_host_view);
|
|
|
|
|
2016-08-04 04:22:19 +00:00
|
|
|
void OnPaint(const gfx::Rect& damage_rect, const SkBitmap& bitmap);
|
2017-03-04 02:09:16 +00:00
|
|
|
void OnPopupPaint(const gfx::Rect& damage_rect, const SkBitmap& bitmap);
|
2018-05-04 06:45:12 +00:00
|
|
|
void OnProxyViewPaint(const gfx::Rect& damage_rect) override;
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
bool IsPopupWidget() const { return popup_type_ != blink::kWebPopupTypeNone; }
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void HoldResize();
|
|
|
|
void ReleaseResize();
|
2018-10-05 18:03:35 +00:00
|
|
|
void SynchronizeVisualProperties();
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2018-05-15 01:59:22 +00:00
|
|
|
void SendMouseEvent(const blink::WebMouseEvent& event);
|
|
|
|
void SendMouseWheelEvent(const blink::WebMouseWheelEvent& event);
|
2016-07-27 17:44:41 +00:00
|
|
|
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetPainting(bool painting);
|
2016-07-30 13:40:16 +00:00
|
|
|
bool IsPainting() const;
|
|
|
|
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetFrameRate(int frame_rate);
|
2016-07-30 13:40:16 +00:00
|
|
|
int GetFrameRate() const;
|
2016-08-03 04:46:34 +00:00
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
ui::Compositor* GetCompositor() const;
|
|
|
|
ui::Layer* GetRootLayer() const;
|
2018-10-05 18:03:35 +00:00
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
content::BrowserCompositorMac* browser_compositor() const {
|
|
|
|
return browser_compositor_.get();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
content::DelegatedFrameHost* GetDelegatedFrameHost() const;
|
|
|
|
|
2016-09-01 17:25:12 +00:00
|
|
|
void Invalidate();
|
2017-03-04 02:09:16 +00:00
|
|
|
void InvalidateBounds(const gfx::Rect&);
|
2016-09-01 17:25:12 +00:00
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
content::RenderWidgetHostImpl* render_widget_host() const {
|
|
|
|
return render_widget_host_;
|
|
|
|
}
|
2018-10-11 13:14:01 +00:00
|
|
|
void SetNativeWindow(NativeWindow* window);
|
2016-09-06 08:24:37 +00:00
|
|
|
NativeWindow* window() const { return native_window_; }
|
2016-12-20 01:23:41 +00:00
|
|
|
gfx::Size size() const { return size_; }
|
2016-08-03 04:46:34 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void set_popup_host_view(OffScreenRenderWidgetHostView* popup_view) {
|
|
|
|
popup_host_view_ = popup_view;
|
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void set_child_host_view(OffScreenRenderWidgetHostView* child_view) {
|
|
|
|
child_host_view_ = child_view;
|
|
|
|
}
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
private:
|
2018-10-11 13:14:01 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
display::Display GetDisplay();
|
|
|
|
void OnDidUpdateVisualPropertiesComplete(
|
|
|
|
const cc::RenderFrameMetadata& metadata);
|
|
|
|
#endif
|
|
|
|
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetupFrameRate(bool force);
|
2018-08-20 16:54:31 +00:00
|
|
|
void ResizeRootLayer(bool force);
|
2016-07-22 11:55:58 +00:00
|
|
|
|
2017-10-19 19:04:21 +00:00
|
|
|
viz::FrameSinkId AllocateFrameSinkId(bool is_guest_view_hack);
|
2017-04-05 08:31:22 +00:00
|
|
|
|
2017-07-08 19:25:15 +00:00
|
|
|
// Applies background color without notifying the RenderWidget about
|
|
|
|
// opaqueness changes.
|
|
|
|
void UpdateBackgroundColorFromRenderer(SkColor color);
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
// Weak ptrs.
|
2016-07-13 15:43:00 +00:00
|
|
|
content::RenderWidgetHostImpl* render_widget_host_;
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
OffScreenRenderWidgetHostView* parent_host_view_ = nullptr;
|
|
|
|
OffScreenRenderWidgetHostView* popup_host_view_ = nullptr;
|
2017-03-04 02:09:16 +00:00
|
|
|
std::unique_ptr<SkBitmap> popup_bitmap_;
|
2018-05-21 22:18:38 +00:00
|
|
|
OffScreenRenderWidgetHostView* child_host_view_ = nullptr;
|
2017-03-04 02:09:16 +00:00
|
|
|
std::set<OffScreenRenderWidgetHostView*> guest_host_views_;
|
2017-05-21 17:55:19 +00:00
|
|
|
std::set<OffscreenViewProxy*> proxy_views_;
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2016-07-27 12:36:22 +00:00
|
|
|
NativeWindow* native_window_;
|
2018-05-21 22:18:38 +00:00
|
|
|
OffScreenOutputDevice* software_output_device_ = nullptr;
|
2016-07-22 11:55:58 +00:00
|
|
|
|
2016-08-04 04:03:24 +00:00
|
|
|
const bool transparent_;
|
2016-08-03 04:04:36 +00:00
|
|
|
OnPaintCallback callback_;
|
2017-03-04 02:09:16 +00:00
|
|
|
OnPaintCallback parent_callback_;
|
2016-07-29 12:50:27 +00:00
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
int frame_rate_ = 0;
|
|
|
|
int frame_rate_threshold_us_ = 0;
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
base::Time last_time_ = base::Time::Now();
|
2016-07-25 13:55:00 +00:00
|
|
|
|
2016-07-13 15:43:00 +00:00
|
|
|
gfx::Vector2dF last_scroll_offset_;
|
|
|
|
gfx::Size size_;
|
2016-07-30 13:40:16 +00:00
|
|
|
bool painting_;
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
bool is_showing_ = false;
|
|
|
|
bool is_destroyed_ = false;
|
2017-03-04 02:09:16 +00:00
|
|
|
gfx::Rect popup_position_;
|
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
bool hold_resize_ = false;
|
|
|
|
bool pending_resize_ = false;
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
bool paint_callback_running_ = false;
|
2018-01-25 13:42:11 +00:00
|
|
|
|
2018-03-17 22:26:41 +00:00
|
|
|
viz::LocalSurfaceId local_surface_id_;
|
2018-05-10 14:58:17 +00:00
|
|
|
viz::ParentLocalSurfaceIdAllocator local_surface_id_allocator_;
|
2018-03-17 22:26:41 +00:00
|
|
|
|
2016-07-18 14:16:23 +00:00
|
|
|
std::unique_ptr<ui::Layer> root_layer_;
|
2016-08-03 04:46:34 +00:00
|
|
|
std::unique_ptr<ui::Compositor> compositor_;
|
|
|
|
std::unique_ptr<content::DelegatedFrameHost> delegated_frame_host_;
|
|
|
|
|
2018-10-11 13:14:01 +00:00
|
|
|
std::unique_ptr<content::CursorManager> cursor_manager_;
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
std::unique_ptr<AtomCopyFrameGenerator> copy_frame_generator_;
|
|
|
|
std::unique_ptr<AtomBeginFrameTimer> begin_frame_timer_;
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2017-04-05 08:31:22 +00:00
|
|
|
// Provides |source_id| for BeginFrameArgs that we create.
|
2017-12-04 21:34:15 +00:00
|
|
|
viz::StubBeginFrameSource begin_frame_source_;
|
2017-12-04 21:35:35 +00:00
|
|
|
uint64_t begin_frame_number_ = viz::BeginFrameArgs::kStartingFrameNumber;
|
2017-04-05 08:31:22 +00:00
|
|
|
|
2016-08-02 10:56:03 +00:00
|
|
|
#if defined(OS_MACOSX)
|
2016-07-18 14:16:23 +00:00
|
|
|
std::unique_ptr<content::BrowserCompositorMac> browser_compositor_;
|
|
|
|
|
2018-08-20 16:54:31 +00:00
|
|
|
SkColor last_frame_root_background_color_;
|
|
|
|
|
2016-09-06 08:24:37 +00:00
|
|
|
// Can not be managed by smart pointer because its header can not be included
|
|
|
|
// in the file that has the destructor.
|
2016-09-07 08:33:09 +00:00
|
|
|
MacHelper* mac_helper_;
|
2016-09-06 08:24:37 +00:00
|
|
|
|
2016-07-18 14:16:23 +00:00
|
|
|
// Selected text on the renderer.
|
|
|
|
std::string selected_text_;
|
2016-07-13 15:43:00 +00:00
|
|
|
#endif
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2018-08-20 16:54:31 +00:00
|
|
|
content::MouseWheelPhaseHandler mouse_wheel_phase_handler_;
|
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
viz::mojom::CompositorFrameSinkClient* renderer_compositor_frame_sink_ =
|
|
|
|
nullptr;
|
2017-07-08 19:25:15 +00:00
|
|
|
|
2018-10-05 18:03:35 +00:00
|
|
|
// Latest capture sequence number which is incremented when the caller
|
|
|
|
// requests surfaces be synchronized via
|
|
|
|
// EnsureSurfaceSynchronizedForLayoutTest().
|
|
|
|
uint32_t latest_capture_sequence_number_ = 0u;
|
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
SkColor background_color_ = SkColor();
|
2017-07-08 19:25:15 +00:00
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
base::WeakPtrFactory<OffScreenRenderWidgetHostView> weak_ptr_factory_;
|
2016-08-03 04:46:34 +00:00
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(OffScreenRenderWidgetHostView);
|
2016-07-05 19:33:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2016-08-03 02:01:35 +00:00
|
|
|
#endif // ATOM_BROWSER_OSR_OSR_RENDER_WIDGET_HOST_VIEW_H_
|