84 lines
3.3 KiB
C++
84 lines
3.3 KiB
C++
// 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 <vector>
|
|
|
|
#include "content/port/browser/render_view_host_delegate_view.h"
|
|
#include "content/port/browser/web_contents_view_port.h"
|
|
|
|
namespace content {
|
|
class WebContents;
|
|
class WebContentsViewDelegate;
|
|
}
|
|
|
|
class CefBrowserHostImpl;
|
|
|
|
// An implementation of WebContentsView for off-screen rendering.
|
|
class CefWebContentsViewOSR : public content::WebContentsViewPort,
|
|
public content::RenderViewHostDelegateView {
|
|
public:
|
|
CefWebContentsViewOSR(content::WebContents* web_contents,
|
|
content::WebContentsViewDelegate* delegate);
|
|
virtual ~CefWebContentsViewOSR();
|
|
|
|
// WebContentsView methods.
|
|
virtual void CreateView(const gfx::Size& initial_size,
|
|
gfx::NativeView context) OVERRIDE;
|
|
virtual content::RenderWidgetHostView* CreateViewForWidget(
|
|
content::RenderWidgetHost* render_widget_host) OVERRIDE;
|
|
virtual content::RenderWidgetHostView* CreateViewForPopupWidget(
|
|
content::RenderWidgetHost* render_widget_host);
|
|
virtual gfx::NativeView GetNativeView() const OVERRIDE;
|
|
virtual gfx::NativeView GetContentNativeView() const OVERRIDE;
|
|
virtual gfx::NativeWindow GetTopLevelNativeWindow() const OVERRIDE;
|
|
virtual void GetContainerBounds(gfx::Rect *out) const OVERRIDE;
|
|
virtual void SetPageTitle(const string16& title) OVERRIDE;
|
|
virtual void OnTabCrashed(base::TerminationStatus status,
|
|
int error_code) OVERRIDE;
|
|
virtual void SizeContents(const gfx::Size& size) OVERRIDE;
|
|
virtual void RenderViewCreated(content::RenderViewHost* host) OVERRIDE;
|
|
virtual void RenderViewSwappedIn(content::RenderViewHost* host) OVERRIDE;
|
|
virtual void SetOverscrollControllerEnabled(bool enabled) OVERRIDE;
|
|
virtual void Focus() OVERRIDE;
|
|
virtual void SetInitialFocus() OVERRIDE;
|
|
virtual void StoreFocus() OVERRIDE;
|
|
virtual void RestoreFocus() OVERRIDE;
|
|
virtual content::DropData* GetDropData() const OVERRIDE;
|
|
virtual gfx::Rect GetViewBounds() const OVERRIDE;
|
|
#if defined(OS_MACOSX)
|
|
virtual bool IsEventTracking() const OVERRIDE;
|
|
virtual void CloseTabAfterEventTracking() OVERRIDE;
|
|
virtual void SetAllowOverlappingViews(bool overlapping) OVERRIDE;
|
|
virtual bool GetAllowOverlappingViews() const OVERRIDE;
|
|
#endif
|
|
|
|
// RenderViewHostDelegateView methods.
|
|
virtual void StartDragging(
|
|
const content::DropData& drop_data,
|
|
WebKit::WebDragOperationsMask allowed_ops,
|
|
const gfx::ImageSkia& image,
|
|
const gfx::Vector2d& image_offset,
|
|
const content::DragEventSourceInfo& event_info) OVERRIDE;
|
|
virtual void ShowPopupMenu(
|
|
const gfx::Rect& bounds,
|
|
int item_height,
|
|
double item_font_size,
|
|
int selected_item,
|
|
const std::vector<content::MenuItem>& items,
|
|
bool right_aligned,
|
|
bool allow_multiple_selection) OVERRIDE;
|
|
|
|
private:
|
|
content::WebContents* web_contents_;
|
|
content::RenderWidgetHostView* view_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefWebContentsViewOSR);
|
|
};
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_WEB_CONTENTS_VIEW_OSR_H_
|