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.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_OSR_OSR_RENDER_WIDGET_HOST_VIEW_H_
|
|
|
|
#define SHELL_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-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"
|
2019-04-17 21:10:04 +00:00
|
|
|
#include "content/browser/frame_host/render_widget_host_view_guest.h" // nogncheck
|
|
|
|
#include "content/browser/renderer_host/delegated_frame_host.h" // nogncheck
|
|
|
|
#include "content/browser/renderer_host/input/mouse_wheel_phase_handler.h" // nogncheck
|
|
|
|
#include "content/browser/renderer_host/render_widget_host_impl.h" // nogncheck
|
|
|
|
#include "content/browser/renderer_host/render_widget_host_view_base.h" // nogncheck
|
|
|
|
#include "content/browser/web_contents/web_contents_view.h" // nogncheck
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/osr/osr_host_display_client.h"
|
|
|
|
#include "shell/browser/osr/osr_video_consumer.h"
|
|
|
|
#include "shell/browser/osr/osr_view_proxy.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
|
|
|
|
2019-04-17 21:10:04 +00:00
|
|
|
#include "components/viz/host/host_display_client.h"
|
|
|
|
|
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
|
|
|
|
|
2018-10-11 13:14:01 +00:00
|
|
|
namespace content {
|
|
|
|
class CursorManager;
|
|
|
|
} // namespace content
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2016-07-27 18:31:03 +00:00
|
|
|
class AtomCopyFrameGenerator;
|
|
|
|
class AtomBeginFrameTimer;
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2019-01-30 17:33:32 +00:00
|
|
|
class AtomDelegatedFrameHostClient;
|
2019-04-17 21:10:04 +00:00
|
|
|
|
|
|
|
typedef base::Callback<void(const gfx::Rect&, const SkBitmap&)> OnPaintCallback;
|
|
|
|
typedef base::Callback<void(const gfx::Rect&)> OnPopupPaintCallback;
|
2016-09-06 08:24:37 +00:00
|
|
|
|
2018-10-05 18:03:35 +00:00
|
|
|
class OffScreenRenderWidgetHostView : public content::RenderWidgetHostViewBase,
|
|
|
|
public ui::CompositorDelegate,
|
|
|
|
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,
|
2018-11-30 05:25:02 +00:00
|
|
|
gfx::Size initial_size);
|
2016-08-03 04:46:34 +00:00
|
|
|
~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;
|
2019-04-20 17:20:37 +00:00
|
|
|
gfx::NativeView GetNativeView(void) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
gfx::NativeViewAccessible GetNativeViewAccessible(void) override;
|
|
|
|
ui::TextInputClient* GetTextInputClient() override;
|
|
|
|
void Focus(void) override;
|
2019-04-20 17:20:37 +00:00
|
|
|
bool HasFocus(void) override;
|
2018-10-05 18:03:35 +00:00
|
|
|
uint32_t GetCaptureSequenceNumber() const override;
|
2019-04-20 17:20:37 +00:00
|
|
|
bool IsSurfaceAvailableForCopy(void) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
void Show(void) override;
|
|
|
|
void Hide(void) override;
|
|
|
|
bool IsShowing(void) override;
|
2019-02-04 09:15:25 +00:00
|
|
|
void EnsureSurfaceSynchronizedForWebTest() override;
|
2019-04-20 17:20:37 +00:00
|
|
|
gfx::Rect GetViewBounds(void) override;
|
|
|
|
gfx::Size GetVisibleViewportSize() override;
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetInsets(const gfx::Insets&) override;
|
2016-08-01 11:27:39 +00:00
|
|
|
void SetBackgroundColor(SkColor color) override;
|
2019-04-20 17:20:37 +00:00
|
|
|
base::Optional<SkColor> GetBackgroundColor() override;
|
2018-10-05 18:03:35 +00:00
|
|
|
void UpdateBackgroundColor() override;
|
2019-09-18 19:58:00 +00:00
|
|
|
bool LockMouse(bool request_unadjusted_movement) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
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-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
|
|
|
|
2018-11-07 19:17:53 +00:00
|
|
|
void ResetFallbackToFirstNavigationSurface() 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;
|
2019-05-01 00:18:22 +00:00
|
|
|
void RenderProcessGone() override;
|
2016-07-31 10:19:56 +00:00
|
|
|
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-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;
|
2019-04-20 17:20:37 +00:00
|
|
|
void GetScreenInfo(content::ScreenInfo* results) 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;
|
2019-04-17 21:10:04 +00:00
|
|
|
std::unique_ptr<content::SyntheticGestureTarget>
|
|
|
|
CreateSyntheticGestureTarget() override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void ImeCompositionRangeChanged(const gfx::Range&,
|
|
|
|
const std::vector<gfx::Rect>&) override;
|
2019-04-20 17:20:37 +00:00
|
|
|
gfx::Size GetCompositorViewportPixelSize() override;
|
2018-10-11 13:14:01 +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
|
|
|
|
2019-01-30 17:33:32 +00:00
|
|
|
const viz::LocalSurfaceIdAllocation& GetLocalSurfaceIdAllocation()
|
|
|
|
const override;
|
2018-10-11 13:14:01 +00:00
|
|
|
const viz::FrameSinkId& GetFrameSinkId() const override;
|
2018-08-20 16:54:31 +00:00
|
|
|
|
|
|
|
void DidNavigate() 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,
|
2019-04-17 21:10:04 +00:00
|
|
|
gfx::PointF* transformed_point) override;
|
2017-04-05 08:31:22 +00:00
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
// ui::CompositorDelegate:
|
2019-04-17 21:10:04 +00:00
|
|
|
std::unique_ptr<viz::HostDisplayClient> CreateHostDisplayClient(
|
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
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2016-08-04 04:22:19 +00:00
|
|
|
void OnPaint(const gfx::Rect& damage_rect, const SkBitmap& bitmap);
|
2019-04-17 21:10:04 +00:00
|
|
|
void OnPopupPaint(const gfx::Rect& damage_rect);
|
2018-05-04 06:45:12 +00:00
|
|
|
void OnProxyViewPaint(const gfx::Rect& damage_rect) override;
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2019-04-17 21:10:04 +00:00
|
|
|
gfx::Size SizeInPixels();
|
|
|
|
|
|
|
|
void CompositeFrame(const gfx::Rect& damage_rect);
|
|
|
|
|
2019-01-30 17:33:32 +00:00
|
|
|
bool IsPopupWidget() const {
|
|
|
|
return widget_type_ == content::WidgetType::kPopup;
|
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2019-04-17 21:10:04 +00:00
|
|
|
const SkBitmap& GetBacking() { return *backing_.get(); }
|
|
|
|
|
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
|
|
|
|
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-11-30 05:25:02 +00:00
|
|
|
|
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:
|
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;
|
|
|
|
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-08-04 04:03:24 +00:00
|
|
|
const bool transparent_;
|
2016-08-03 04:04:36 +00:00
|
|
|
OnPaintCallback callback_;
|
2019-04-17 21:10:04 +00:00
|
|
|
OnPopupPaintCallback 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
|
|
|
|
2019-04-17 21:10:04 +00:00
|
|
|
viz::LocalSurfaceIdAllocation delegated_frame_host_allocation_;
|
|
|
|
viz::ParentLocalSurfaceIdAllocator delegated_frame_host_allocator_;
|
|
|
|
|
|
|
|
viz::LocalSurfaceIdAllocation compositor_allocation_;
|
|
|
|
viz::ParentLocalSurfaceIdAllocator compositor_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<AtomBeginFrameTimer> begin_frame_timer_;
|
2019-04-17 21:10:04 +00:00
|
|
|
OffScreenHostDisplayClient* host_display_client_;
|
|
|
|
std::unique_ptr<OffScreenVideoConsumer> video_consumer_;
|
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
|
|
|
|
2019-01-30 17:33:32 +00:00
|
|
|
std::unique_ptr<AtomDelegatedFrameHostClient> delegated_frame_host_client_;
|
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
|
2019-02-04 13:33:47 +00:00
|
|
|
// EnsureSurfaceSynchronizedForWebTest().
|
2018-10-05 18:03:35 +00:00
|
|
|
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
|
|
|
|
2019-04-17 21:10:04 +00:00
|
|
|
std::unique_ptr<SkBitmap> backing_;
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_OSR_OSR_RENDER_WIDGET_HOST_VIEW_H_
|