2014-07-01 00:30:29 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright (c) 2011 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 CEF_LIBCEF_BROWSER_WEB_CONTENTS_VIEW_OSR_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_WEB_CONTENTS_VIEW_OSR_H_
|
|
|
|
|
|
|
|
#include "content/browser/renderer_host/render_view_host_delegate_view.h"
|
|
|
|
#include "content/browser/web_contents/web_contents_view.h"
|
|
|
|
|
|
|
|
namespace content {
|
2015-07-16 23:40:01 +02:00
|
|
|
class BrowserPluginGuest;
|
2014-07-01 00:30:29 +02:00
|
|
|
class WebContents;
|
|
|
|
class WebContentsViewDelegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
class CefRenderWidgetHostViewOSR;
|
|
|
|
|
|
|
|
// An implementation of WebContentsView for off-screen rendering.
|
|
|
|
class CefWebContentsViewOSR : public content::WebContentsView,
|
|
|
|
public content::RenderViewHostDelegateView {
|
|
|
|
public:
|
2014-09-30 20:52:26 +02:00
|
|
|
CefWebContentsViewOSR();
|
2014-11-12 20:25:15 +01:00
|
|
|
~CefWebContentsViewOSR() override;
|
2014-07-01 00:30:29 +02:00
|
|
|
|
2014-09-30 20:52:26 +02:00
|
|
|
void set_web_contents(content::WebContents* web_contents);
|
2015-07-16 23:40:01 +02:00
|
|
|
void set_guest(content::BrowserPluginGuest* guest);
|
2014-09-30 20:52:26 +02:00
|
|
|
|
2014-07-01 00:30:29 +02:00
|
|
|
// WebContentsView methods.
|
2014-11-12 20:25:15 +01:00
|
|
|
gfx::NativeView GetNativeView() const override;
|
|
|
|
gfx::NativeView GetContentNativeView() const override;
|
|
|
|
gfx::NativeWindow GetTopLevelNativeWindow() const override;
|
|
|
|
void GetContainerBounds(gfx::Rect* out) const override;
|
|
|
|
void SizeContents(const gfx::Size& size) override;
|
|
|
|
void Focus() override;
|
|
|
|
void SetInitialFocus() override;
|
|
|
|
void StoreFocus() override;
|
|
|
|
void RestoreFocus() override;
|
|
|
|
content::DropData* GetDropData() const override;
|
|
|
|
gfx::Rect GetViewBounds() const override;
|
|
|
|
void CreateView(const gfx::Size& initial_size,
|
|
|
|
gfx::NativeView context) override;
|
|
|
|
content::RenderWidgetHostViewBase* CreateViewForWidget(
|
|
|
|
content::RenderWidgetHost* render_widget_host,
|
|
|
|
bool is_guest_view_hack) override;
|
|
|
|
content::RenderWidgetHostViewBase* CreateViewForPopupWidget(
|
|
|
|
content::RenderWidgetHost* render_widget_host) override;
|
|
|
|
void SetPageTitle(const base::string16& title) override;
|
|
|
|
void RenderViewCreated(content::RenderViewHost* host) override;
|
|
|
|
void RenderViewSwappedIn(content::RenderViewHost* host) override;
|
|
|
|
void SetOverscrollControllerEnabled(bool enabled) override;
|
2014-07-01 00:30:29 +02:00
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
2014-11-12 20:25:15 +01:00
|
|
|
void SetAllowOtherViews(bool allow) override;
|
|
|
|
bool GetAllowOtherViews() const override;
|
|
|
|
bool IsEventTracking() const override;
|
|
|
|
void CloseTabAfterEventTracking() override;
|
2014-07-01 00:30:29 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// RenderViewHostDelegateView methods.
|
2014-11-12 20:25:15 +01:00
|
|
|
void StartDragging(
|
2014-07-01 00:30:29 +02:00
|
|
|
const content::DropData& drop_data,
|
|
|
|
blink::WebDragOperationsMask allowed_ops,
|
|
|
|
const gfx::ImageSkia& image,
|
|
|
|
const gfx::Vector2d& image_offset,
|
2014-11-12 20:25:15 +01:00
|
|
|
const content::DragEventSourceInfo& event_info) override;
|
|
|
|
void UpdateDragCursor(blink::WebDragOperation operation) override;
|
2014-07-01 00:30:29 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
content::WebContents* web_contents_;
|
|
|
|
CefRenderWidgetHostViewOSR* view_;
|
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
content::BrowserPluginGuest* guest_;
|
|
|
|
gfx::Size size_;
|
|
|
|
|
2014-07-01 00:30:29 +02:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefWebContentsViewOSR);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_WEB_CONTENTS_VIEW_OSR_H_
|