electron/atom/browser/osr/osr_web_contents_view.cc

154 lines
4.1 KiB
C++
Raw Normal View History

2016-07-30 19:35:14 +00:00
// Copyright (c) 2016 GitHub, Inc.
2016-07-20 09:30:06 +00:00
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/browser/osr/osr_web_contents_view.h"
2016-07-20 09:30:06 +00:00
2016-12-20 01:23:41 +00:00
#include "third_party/WebKit/public/platform/WebScreenInfo.h"
2016-07-20 09:30:06 +00:00
namespace atom {
OffScreenWebContentsView::OffScreenWebContentsView(
bool transparent, const OnPaintCallback& callback)
2016-08-03 04:46:34 +00:00
: transparent_(transparent),
callback_(callback),
2016-08-03 04:46:34 +00:00
web_contents_(nullptr) {
2016-08-04 06:34:29 +00:00
#if defined(OS_MACOSX)
PlatformCreate();
#endif
2016-07-20 09:30:06 +00:00
}
2016-07-29 12:50:27 +00:00
2016-07-20 09:30:06 +00:00
OffScreenWebContentsView::~OffScreenWebContentsView() {
2016-08-04 06:34:29 +00:00
#if defined(OS_MACOSX)
PlatformDestroy();
#endif
2016-07-20 09:30:06 +00:00
}
2016-07-27 12:36:22 +00:00
void OffScreenWebContentsView::SetWebContents(
content::WebContents* web_contents) {
web_contents_ = web_contents;
}
2016-08-04 06:34:29 +00:00
#if !defined(OS_MACOSX)
2016-07-30 18:39:17 +00:00
gfx::NativeView OffScreenWebContentsView::GetNativeView() const {
2016-07-20 09:30:06 +00:00
return gfx::NativeView();
}
2016-07-30 18:39:17 +00:00
gfx::NativeView OffScreenWebContentsView::GetContentNativeView() const {
2016-07-20 09:30:06 +00:00
return gfx::NativeView();
}
2016-07-30 18:39:17 +00:00
gfx::NativeWindow OffScreenWebContentsView::GetTopLevelNativeWindow() const {
2016-07-20 09:30:06 +00:00
return gfx::NativeWindow();
}
2016-08-04 06:34:29 +00:00
#endif
2016-07-20 09:30:06 +00:00
2016-07-30 18:39:17 +00:00
void OffScreenWebContentsView::GetContainerBounds(gfx::Rect* out) const {
2016-07-20 09:30:06 +00:00
*out = GetViewBounds();
}
2016-07-30 18:39:17 +00:00
void OffScreenWebContentsView::SizeContents(const gfx::Size& size) {
2016-07-20 09:30:06 +00:00
}
2016-07-30 18:39:17 +00:00
void OffScreenWebContentsView::Focus() {
2016-07-20 09:30:06 +00:00
}
2016-07-30 18:39:17 +00:00
void OffScreenWebContentsView::SetInitialFocus() {
2016-07-20 09:30:06 +00:00
}
2016-07-30 18:39:17 +00:00
void OffScreenWebContentsView::StoreFocus() {
2016-07-20 09:30:06 +00:00
}
2016-07-30 18:39:17 +00:00
void OffScreenWebContentsView::RestoreFocus() {
2016-07-20 09:30:06 +00:00
}
2016-07-30 18:39:17 +00:00
content::DropData* OffScreenWebContentsView::GetDropData() const {
2016-07-20 09:30:06 +00:00
return nullptr;
}
2016-07-30 18:39:17 +00:00
gfx::Rect OffScreenWebContentsView::GetViewBounds() const {
2016-07-20 09:30:06 +00:00
return view_ ? view_->GetViewBounds() : gfx::Rect();
}
2016-07-30 18:39:17 +00:00
void OffScreenWebContentsView::CreateView(const gfx::Size& initial_size,
gfx::NativeView context) {
2016-07-20 09:30:06 +00:00
}
content::RenderWidgetHostViewBase*
OffScreenWebContentsView::CreateViewForWidget(
2016-07-30 18:39:17 +00:00
content::RenderWidgetHost* render_widget_host, bool is_guest_view_hack) {
2016-07-27 12:36:22 +00:00
auto relay = NativeWindowRelay::FromWebContents(web_contents_);
view_ = new OffScreenRenderWidgetHostView(
transparent_, callback_, render_widget_host, relay->window.get());
2016-07-20 09:30:06 +00:00
return view_;
}
content::RenderWidgetHostViewBase*
OffScreenWebContentsView::CreateViewForPopupWidget(
2016-07-30 18:39:17 +00:00
content::RenderWidgetHost* render_widget_host) {
2016-07-27 12:36:22 +00:00
auto relay = NativeWindowRelay::FromWebContents(web_contents_);
view_ = new OffScreenRenderWidgetHostView(
transparent_, callback_, render_widget_host, relay->window.get());
2016-07-20 09:30:06 +00:00
return view_;
}
2016-07-30 18:39:17 +00:00
void OffScreenWebContentsView::SetPageTitle(const base::string16& title) {
2016-07-20 09:30:06 +00:00
}
2016-07-30 18:39:17 +00:00
void OffScreenWebContentsView::RenderViewCreated(
content::RenderViewHost* host) {
2016-08-01 11:27:39 +00:00
if (view_)
view_->InstallTransparency();
2016-07-20 09:30:06 +00:00
}
2016-07-30 18:39:17 +00:00
void OffScreenWebContentsView::RenderViewSwappedIn(
content::RenderViewHost* host) {
2016-07-20 09:30:06 +00:00
}
2016-07-30 18:39:17 +00:00
void OffScreenWebContentsView::SetOverscrollControllerEnabled(bool enabled) {
2016-07-20 09:30:06 +00:00
}
2016-11-30 07:30:03 +00:00
void OffScreenWebContentsView::GetScreenInfo(
blink::WebScreenInfo* web_screen_info) const {
2016-12-20 01:23:41 +00:00
web_screen_info->rect = gfx::Rect(view_->size());
web_screen_info->availableRect = gfx::Rect(view_->size());
web_screen_info->depth = 24;
web_screen_info->depthPerComponent = 8;
web_screen_info->deviceScaleFactor = view_->scale_factor();
web_screen_info->orientationAngle = 0;
web_screen_info->orientationType =
blink::WebScreenOrientationLandscapePrimary;
2016-11-30 07:30:03 +00:00
}
2016-07-20 09:30:06 +00:00
#if defined(OS_MACOSX)
void OffScreenWebContentsView::SetAllowOtherViews(bool allow) {
}
bool OffScreenWebContentsView::GetAllowOtherViews() const {
return false;
}
bool OffScreenWebContentsView::IsEventTracking() const {
return false;
}
void OffScreenWebContentsView::CloseTabAfterEventTracking() {
}
#endif // defined(OS_MACOSX)
void OffScreenWebContentsView::StartDragging(
const content::DropData& drop_data,
blink::WebDragOperationsMask allowed_ops,
const gfx::ImageSkia& image,
const gfx::Vector2d& image_offset,
const content::DragEventSourceInfo& event_info) {
2016-08-01 10:06:46 +00:00
if (web_contents_)
web_contents_->SystemDragEnded();
}
void OffScreenWebContentsView::UpdateDragCursor(
blink::WebDragOperation operation) {
}
2016-07-20 09:30:06 +00:00
} // namespace atom