electron/atom/browser/osr/osr_web_contents_view.cc

155 lines
4.1 KiB
C++
Raw Normal View History

2016-07-30 21:35:14 +02:00
// Copyright (c) 2016 GitHub, Inc.
2016-07-20 11:30:06 +02: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 11:30:06 +02:00
2016-12-19 17:23:41 -08:00
#include "third_party/WebKit/public/platform/WebScreenInfo.h"
2016-07-20 11:30:06 +02:00
namespace atom {
OffScreenWebContentsView::OffScreenWebContentsView(
bool transparent, const OnPaintCallback& callback)
2016-08-03 13:46:34 +09:00
: transparent_(transparent),
callback_(callback),
2016-08-03 13:46:34 +09:00
web_contents_(nullptr) {
2016-08-04 15:34:29 +09:00
#if defined(OS_MACOSX)
PlatformCreate();
#endif
2016-07-20 11:30:06 +02:00
}
2016-07-29 14:50:27 +02:00
2016-07-20 11:30:06 +02:00
OffScreenWebContentsView::~OffScreenWebContentsView() {
2016-08-04 15:34:29 +09:00
#if defined(OS_MACOSX)
PlatformDestroy();
#endif
2016-07-20 11:30:06 +02:00
}
2016-07-27 14:36:22 +02:00
void OffScreenWebContentsView::SetWebContents(
content::WebContents* web_contents) {
web_contents_ = web_contents;
}
2016-08-04 15:34:29 +09:00
#if !defined(OS_MACOSX)
2016-07-30 20:39:17 +02:00
gfx::NativeView OffScreenWebContentsView::GetNativeView() const {
2016-07-20 11:30:06 +02:00
return gfx::NativeView();
}
2016-07-30 20:39:17 +02:00
gfx::NativeView OffScreenWebContentsView::GetContentNativeView() const {
2016-07-20 11:30:06 +02:00
return gfx::NativeView();
}
2016-07-30 20:39:17 +02:00
gfx::NativeWindow OffScreenWebContentsView::GetTopLevelNativeWindow() const {
2016-07-20 11:30:06 +02:00
return gfx::NativeWindow();
}
2016-08-04 15:34:29 +09:00
#endif
2016-07-20 11:30:06 +02:00
2016-07-30 20:39:17 +02:00
void OffScreenWebContentsView::GetContainerBounds(gfx::Rect* out) const {
2016-07-20 11:30:06 +02:00
*out = GetViewBounds();
}
2016-07-30 20:39:17 +02:00
void OffScreenWebContentsView::SizeContents(const gfx::Size& size) {
2016-07-20 11:30:06 +02:00
}
2016-07-30 20:39:17 +02:00
void OffScreenWebContentsView::Focus() {
2016-07-20 11:30:06 +02:00
}
2016-07-30 20:39:17 +02:00
void OffScreenWebContentsView::SetInitialFocus() {
2016-07-20 11:30:06 +02:00
}
2016-07-30 20:39:17 +02:00
void OffScreenWebContentsView::StoreFocus() {
2016-07-20 11:30:06 +02:00
}
2016-07-30 20:39:17 +02:00
void OffScreenWebContentsView::RestoreFocus() {
2016-07-20 11:30:06 +02:00
}
2016-07-30 20:39:17 +02:00
content::DropData* OffScreenWebContentsView::GetDropData() const {
2016-07-20 11:30:06 +02:00
return nullptr;
}
2016-07-30 20:39:17 +02:00
gfx::Rect OffScreenWebContentsView::GetViewBounds() const {
2016-07-20 11:30:06 +02:00
return view_ ? view_->GetViewBounds() : gfx::Rect();
}
2016-07-30 20:39:17 +02:00
void OffScreenWebContentsView::CreateView(const gfx::Size& initial_size,
gfx::NativeView context) {
2016-07-20 11:30:06 +02:00
}
content::RenderWidgetHostViewBase*
OffScreenWebContentsView::CreateViewForWidget(
2016-07-30 20:39:17 +02:00
content::RenderWidgetHost* render_widget_host, bool is_guest_view_hack) {
2016-07-27 14:36:22 +02:00
auto relay = NativeWindowRelay::FromWebContents(web_contents_);
view_ = new OffScreenRenderWidgetHostView(
transparent_, callback_, render_widget_host, relay->window.get());
2016-07-20 11:30:06 +02:00
return view_;
}
content::RenderWidgetHostViewBase*
OffScreenWebContentsView::CreateViewForPopupWidget(
2016-07-30 20:39:17 +02:00
content::RenderWidgetHost* render_widget_host) {
2016-07-27 14:36:22 +02:00
auto relay = NativeWindowRelay::FromWebContents(web_contents_);
view_ = new OffScreenRenderWidgetHostView(
transparent_, callback_, render_widget_host, relay->window.get());
2016-07-20 11:30:06 +02:00
return view_;
}
2016-07-30 20:39:17 +02:00
void OffScreenWebContentsView::SetPageTitle(const base::string16& title) {
2016-07-20 11:30:06 +02:00
}
2016-07-30 20:39:17 +02:00
void OffScreenWebContentsView::RenderViewCreated(
content::RenderViewHost* host) {
2016-08-01 13:27:39 +02:00
if (view_)
view_->InstallTransparency();
2016-07-20 11:30:06 +02:00
}
2016-07-30 20:39:17 +02:00
void OffScreenWebContentsView::RenderViewSwappedIn(
content::RenderViewHost* host) {
2016-07-20 11:30:06 +02:00
}
2016-07-30 20:39:17 +02:00
void OffScreenWebContentsView::SetOverscrollControllerEnabled(bool enabled) {
2016-07-20 11:30:06 +02:00
}
2016-11-30 16:30:03 +09:00
void OffScreenWebContentsView::GetScreenInfo(
2017-01-24 14:06:48 +09:00
content::ScreenInfo* screen_info) const {
screen_info->rect = gfx::Rect(view_->size());
screen_info->available_rect = gfx::Rect(view_->size());
screen_info->depth = 24;
screen_info->depth_per_component = 8;
screen_info->device_scale_factor = view_->scale_factor();
screen_info->orientation_angle = 0;
screen_info->orientation_type =
content::SCREEN_ORIENTATION_VALUES_LANDSCAPE_PRIMARY;
2016-11-30 16:30:03 +09:00
}
2016-07-20 11:30:06 +02: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,
2017-01-24 14:06:48 +09:00
const content::DragEventSourceInfo& event_info,
content::RenderWidgetHostImpl* source_rwh) {
2016-08-01 12:06:46 +02:00
if (web_contents_)
2017-01-24 14:06:48 +09:00
web_contents_->SystemDragEnded(source_rwh);
}
void OffScreenWebContentsView::UpdateDragCursor(
blink::WebDragOperation operation) {
}
2016-07-20 11:30:06 +02:00
} // namespace atom