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.
|
|
|
|
|
2016-08-03 02:01:35 +00:00
|
|
|
#include "atom/browser/osr/osr_render_widget_host_view.h"
|
2016-07-29 12:50:27 +00:00
|
|
|
|
2017-05-21 17:55:19 +00:00
|
|
|
#include <algorithm>
|
2016-07-31 10:19:56 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
#include "base/callback_helpers.h"
|
|
|
|
#include "base/location.h"
|
|
|
|
#include "base/memory/ptr_util.h"
|
|
|
|
#include "base/single_thread_task_runner.h"
|
|
|
|
#include "base/time/time.h"
|
|
|
|
#include "cc/output/copy_output_request.h"
|
|
|
|
#include "cc/scheduler/delay_based_time_source.h"
|
2016-07-26 14:52:43 +00:00
|
|
|
#include "components/display_compositor/gl_helper.h"
|
2017-06-16 21:38:35 +00:00
|
|
|
#include "content/browser/renderer_host/compositor_resize_lock.h"
|
2016-07-05 19:33:22 +00:00
|
|
|
#include "content/browser/renderer_host/render_widget_host_delegate.h"
|
2016-08-26 22:30:02 +00:00
|
|
|
#include "content/browser/renderer_host/render_widget_host_impl.h"
|
2017-04-05 08:31:22 +00:00
|
|
|
#include "content/browser/renderer_host/render_widget_host_view_frame_subscriber.h"
|
2016-07-05 19:33:22 +00:00
|
|
|
#include "content/common/view_messages.h"
|
2016-08-03 04:46:34 +00:00
|
|
|
#include "content/public/browser/browser_thread.h"
|
2016-07-05 19:33:22 +00:00
|
|
|
#include "content/public/browser/context_factory.h"
|
2017-04-05 08:31:22 +00:00
|
|
|
#include "media/base/video_frame.h"
|
2017-05-21 17:55:19 +00:00
|
|
|
#include "third_party/WebKit/public/platform/WebInputEvent.h"
|
2017-01-26 07:10:28 +00:00
|
|
|
#include "ui/compositor/compositor.h"
|
2016-07-05 19:33:22 +00:00
|
|
|
#include "ui/compositor/layer.h"
|
|
|
|
#include "ui/compositor/layer_type.h"
|
2017-05-21 17:55:19 +00:00
|
|
|
#include "ui/events/base_event_utils.h"
|
|
|
|
#include "ui/events/event_constants.h"
|
2016-08-03 04:46:34 +00:00
|
|
|
#include "ui/gfx/geometry/dip_util.h"
|
2016-07-05 19:33:22 +00:00
|
|
|
#include "ui/gfx/native_widget_types.h"
|
2017-03-05 15:18:57 +00:00
|
|
|
#include "ui/gfx/skbitmap_operations.h"
|
2017-06-16 21:41:39 +00:00
|
|
|
#include "ui/latency/latency_info.h"
|
2016-07-29 22:51:19 +00:00
|
|
|
|
2016-08-03 05:09:38 +00:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace {
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2016-08-03 05:09:38 +00:00
|
|
|
const float kDefaultScaleFactor = 1.0;
|
2016-07-18 14:16:23 +00:00
|
|
|
const int kFrameRetryLimit = 2;
|
|
|
|
|
2017-05-21 17:55:19 +00:00
|
|
|
ui::MouseEvent UiMouseEventFromWebMouseEvent(blink::WebMouseEvent event) {
|
|
|
|
ui::EventType type = ui::EventType::ET_UNKNOWN;
|
2017-06-16 20:42:33 +00:00
|
|
|
switch (event.GetType()) {
|
|
|
|
case blink::WebInputEvent::kMouseDown:
|
2017-05-21 17:55:19 +00:00
|
|
|
type = ui::EventType::ET_MOUSE_PRESSED;
|
|
|
|
break;
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebInputEvent::kMouseUp:
|
2017-05-21 17:55:19 +00:00
|
|
|
type = ui::EventType::ET_MOUSE_RELEASED;
|
|
|
|
break;
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebInputEvent::kMouseMove:
|
2017-05-21 17:55:19 +00:00
|
|
|
type = ui::EventType::ET_MOUSE_MOVED;
|
|
|
|
break;
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebInputEvent::kMouseEnter:
|
2017-05-21 17:55:19 +00:00
|
|
|
type = ui::EventType::ET_MOUSE_ENTERED;
|
|
|
|
break;
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebInputEvent::kMouseLeave:
|
2017-05-21 17:55:19 +00:00
|
|
|
type = ui::EventType::ET_MOUSE_EXITED;
|
|
|
|
break;
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebInputEvent::kMouseWheel:
|
2017-05-21 17:55:19 +00:00
|
|
|
type = ui::EventType::ET_MOUSEWHEEL;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
type = ui::EventType::ET_UNKNOWN;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
int button_flags = 0;
|
|
|
|
switch (event.button) {
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebMouseEvent::Button::kBack:
|
2017-05-21 17:55:19 +00:00
|
|
|
button_flags |= ui::EventFlags::EF_BACK_MOUSE_BUTTON;
|
|
|
|
break;
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebMouseEvent::Button::kForward:
|
2017-05-21 17:55:19 +00:00
|
|
|
button_flags |= ui::EventFlags::EF_FORWARD_MOUSE_BUTTON;
|
|
|
|
break;
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebMouseEvent::Button::kLeft:
|
2017-05-21 17:55:19 +00:00
|
|
|
button_flags |= ui::EventFlags::EF_LEFT_MOUSE_BUTTON;
|
|
|
|
break;
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebMouseEvent::Button::kMiddle:
|
2017-05-21 17:55:19 +00:00
|
|
|
button_flags |= ui::EventFlags::EF_MIDDLE_MOUSE_BUTTON;
|
|
|
|
break;
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebMouseEvent::Button::kRight:
|
2017-05-21 17:55:19 +00:00
|
|
|
button_flags |= ui::EventFlags::EF_RIGHT_MOUSE_BUTTON;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
button_flags = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui::MouseEvent ui_event(type,
|
2017-06-16 21:13:28 +00:00
|
|
|
gfx::Point(std::floor(event.PositionInWidget().x), std::floor(event.PositionInWidget().y)),
|
|
|
|
gfx::Point(std::floor(event.PositionInWidget().x), std::floor(event.PositionInWidget().y)),
|
2017-05-21 17:55:19 +00:00
|
|
|
ui::EventTimeForNow(),
|
|
|
|
button_flags, button_flags);
|
2017-06-16 20:42:33 +00:00
|
|
|
ui_event.SetClickCount(event.click_count);
|
2017-05-21 17:55:19 +00:00
|
|
|
|
|
|
|
return ui_event;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui::MouseWheelEvent UiMouseWheelEventFromWebMouseEvent(
|
|
|
|
blink::WebMouseWheelEvent event) {
|
|
|
|
return ui::MouseWheelEvent(UiMouseEventFromWebMouseEvent(event),
|
2017-06-16 20:42:33 +00:00
|
|
|
std::floor(event.delta_x), std::floor(event.delta_y));
|
2017-05-21 17:55:19 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
|
|
|
|
|
|
|
const int kResizeLockTimeoutMs = 67;
|
|
|
|
|
|
|
|
class AtomResizeLock : public content::ResizeLock {
|
|
|
|
public:
|
|
|
|
AtomResizeLock(OffScreenRenderWidgetHostView* host,
|
|
|
|
const gfx::Size new_size,
|
|
|
|
bool defer_compositor_lock)
|
|
|
|
: ResizeLock(new_size, defer_compositor_lock),
|
|
|
|
host_(host),
|
|
|
|
cancelled_(false),
|
|
|
|
weak_ptr_factory_(this) {
|
|
|
|
DCHECK(host_);
|
|
|
|
host_->HoldResize();
|
|
|
|
|
2017-03-05 15:18:57 +00:00
|
|
|
content::BrowserThread::PostDelayedTask(content::BrowserThread::UI,
|
2017-03-04 02:09:16 +00:00
|
|
|
FROM_HERE, base::Bind(&AtomResizeLock::CancelLock,
|
2017-03-05 15:18:57 +00:00
|
|
|
weak_ptr_factory_.GetWeakPtr()),
|
2017-03-04 02:09:16 +00:00
|
|
|
base::TimeDelta::FromMilliseconds(kResizeLockTimeoutMs));
|
|
|
|
}
|
|
|
|
|
|
|
|
~AtomResizeLock() override {
|
|
|
|
CancelLock();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GrabDeferredLock() override {
|
|
|
|
return ResizeLock::GrabDeferredLock();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UnlockCompositor() override {
|
|
|
|
ResizeLock::UnlockCompositor();
|
|
|
|
compositor_lock_ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void LockCompositor() override {
|
|
|
|
ResizeLock::LockCompositor();
|
|
|
|
compositor_lock_ = host_->GetCompositor()->GetCompositorLock();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CancelLock() {
|
|
|
|
if (cancelled_)
|
|
|
|
return;
|
|
|
|
cancelled_ = true;
|
|
|
|
UnlockCompositor();
|
|
|
|
host_->ReleaseResize();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
OffScreenRenderWidgetHostView* host_;
|
|
|
|
scoped_refptr<ui::CompositorLock> compositor_lock_;
|
|
|
|
bool cancelled_;
|
|
|
|
base::WeakPtrFactory<AtomResizeLock> weak_ptr_factory_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomResizeLock);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !defined(OS_MACOSX)
|
|
|
|
|
2016-08-03 05:09:38 +00:00
|
|
|
} // namespace
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2016-07-27 18:31:03 +00:00
|
|
|
class AtomCopyFrameGenerator {
|
2016-07-18 14:16:23 +00:00
|
|
|
public:
|
2017-04-12 14:15:58 +00:00
|
|
|
AtomCopyFrameGenerator(OffScreenRenderWidgetHostView* view,
|
|
|
|
int frame_rate_threshold_us)
|
|
|
|
: view_(view),
|
2016-07-18 14:16:23 +00:00
|
|
|
frame_retry_count_(0),
|
2017-04-12 14:15:58 +00:00
|
|
|
next_frame_time_(base::TimeTicks::Now()),
|
|
|
|
frame_duration_(base::TimeDelta::FromMicroseconds(
|
|
|
|
frame_rate_threshold_us)),
|
2016-07-18 14:16:23 +00:00
|
|
|
weak_ptr_factory_(this) {
|
2016-07-25 13:55:00 +00:00
|
|
|
last_time_ = base::Time::Now();
|
2016-07-18 14:16:23 +00:00
|
|
|
}
|
|
|
|
|
2017-04-12 14:15:58 +00:00
|
|
|
void GenerateCopyFrame(const gfx::Rect& damage_rect) {
|
2016-07-18 14:16:23 +00:00
|
|
|
if (!view_->render_widget_host())
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::unique_ptr<cc::CopyOutputRequest> request =
|
2017-04-12 14:15:58 +00:00
|
|
|
cc::CopyOutputRequest::CreateBitmapRequest(base::Bind(
|
2016-07-27 18:31:03 +00:00
|
|
|
&AtomCopyFrameGenerator::CopyFromCompositingSurfaceHasResult,
|
2016-07-18 14:16:23 +00:00
|
|
|
weak_ptr_factory_.GetWeakPtr(),
|
2016-07-19 21:50:49 +00:00
|
|
|
damage_rect));
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2016-07-22 11:55:58 +00:00
|
|
|
request->set_area(gfx::Rect(view_->GetPhysicalBackingSize()));
|
2016-09-07 08:33:09 +00:00
|
|
|
view_->GetRootLayer()->RequestCopyOfOutput(std::move(request));
|
2016-07-18 14:16:23 +00:00
|
|
|
}
|
2017-04-12 18:54:03 +00:00
|
|
|
|
2017-04-12 14:15:58 +00:00
|
|
|
void set_frame_rate_threshold_us(int frame_rate_threshold_us) {
|
|
|
|
frame_duration_ = base::TimeDelta::FromMicroseconds(
|
|
|
|
frame_rate_threshold_us);
|
|
|
|
}
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2017-04-12 18:54:03 +00:00
|
|
|
private:
|
2016-07-18 14:16:23 +00:00
|
|
|
void CopyFromCompositingSurfaceHasResult(
|
|
|
|
const gfx::Rect& damage_rect,
|
|
|
|
std::unique_ptr<cc::CopyOutputResult> result) {
|
|
|
|
if (result->IsEmpty() || result->size().IsEmpty() ||
|
|
|
|
!view_->render_widget_host()) {
|
|
|
|
OnCopyFrameCaptureFailure(damage_rect);
|
|
|
|
return;
|
|
|
|
}
|
2017-04-12 18:54:03 +00:00
|
|
|
|
2016-07-18 14:16:23 +00:00
|
|
|
DCHECK(result->HasBitmap());
|
|
|
|
std::unique_ptr<SkBitmap> source = result->TakeBitmap();
|
|
|
|
DCHECK(source);
|
|
|
|
if (source) {
|
2017-04-12 14:15:58 +00:00
|
|
|
base::AutoLock autolock(lock_);
|
|
|
|
std::shared_ptr<SkBitmap> bitmap(source.release());
|
2017-04-12 18:54:03 +00:00
|
|
|
|
2017-04-12 14:15:58 +00:00
|
|
|
base::TimeTicks now = base::TimeTicks::Now();
|
|
|
|
base::TimeDelta next_frame_in = next_frame_time_ - now;
|
|
|
|
if (next_frame_in > frame_duration_ / 4) {
|
|
|
|
next_frame_time_ += frame_duration_;
|
|
|
|
content::BrowserThread::PostDelayedTask(content::BrowserThread::UI,
|
2017-04-12 18:54:03 +00:00
|
|
|
FROM_HERE,
|
2017-04-12 14:15:58 +00:00
|
|
|
base::Bind(&AtomCopyFrameGenerator::OnCopyFrameCaptureSuccess,
|
2017-04-12 18:54:03 +00:00
|
|
|
weak_ptr_factory_.GetWeakPtr(),
|
2017-04-12 14:15:58 +00:00
|
|
|
damage_rect,
|
|
|
|
bitmap),
|
|
|
|
next_frame_in);
|
|
|
|
} else {
|
|
|
|
next_frame_time_ = now + frame_duration_;
|
|
|
|
OnCopyFrameCaptureSuccess(damage_rect, bitmap);
|
|
|
|
}
|
2017-04-12 18:54:03 +00:00
|
|
|
|
2017-04-12 14:15:58 +00:00
|
|
|
frame_retry_count_ = 0;
|
2016-07-18 14:16:23 +00:00
|
|
|
} else {
|
|
|
|
OnCopyFrameCaptureFailure(damage_rect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 14:15:58 +00:00
|
|
|
void OnCopyFrameCaptureFailure(const gfx::Rect& damage_rect) {
|
2016-07-18 14:16:23 +00:00
|
|
|
const bool force_frame = (++frame_retry_count_ <= kFrameRetryLimit);
|
2017-04-12 14:15:58 +00:00
|
|
|
if (force_frame) {
|
|
|
|
// Retry with the same |damage_rect|.
|
2016-07-29 22:51:19 +00:00
|
|
|
content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE,
|
|
|
|
base::Bind(&AtomCopyFrameGenerator::GenerateCopyFrame,
|
2017-04-12 14:15:58 +00:00
|
|
|
weak_ptr_factory_.GetWeakPtr(),
|
|
|
|
damage_rect));
|
2016-07-18 14:16:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 14:15:58 +00:00
|
|
|
void OnCopyFrameCaptureSuccess(
|
|
|
|
const gfx::Rect& damage_rect,
|
|
|
|
std::shared_ptr<SkBitmap> bitmap) {
|
|
|
|
base::AutoLock lock(onPaintLock_);
|
|
|
|
view_->OnPaint(damage_rect, *bitmap);
|
|
|
|
}
|
2017-04-12 18:54:03 +00:00
|
|
|
|
2017-04-12 14:15:58 +00:00
|
|
|
base::Lock lock_;
|
|
|
|
base::Lock onPaintLock_;
|
2016-07-29 12:50:27 +00:00
|
|
|
OffScreenRenderWidgetHostView* view_;
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2016-07-25 13:55:00 +00:00
|
|
|
base::Time last_time_;
|
|
|
|
|
2016-07-18 14:16:23 +00:00
|
|
|
int frame_retry_count_;
|
2017-04-12 14:15:58 +00:00
|
|
|
base::TimeTicks next_frame_time_;
|
|
|
|
base::TimeDelta frame_duration_;
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2016-07-27 18:31:03 +00:00
|
|
|
base::WeakPtrFactory<AtomCopyFrameGenerator> weak_ptr_factory_;
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2016-07-27 18:31:03 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomCopyFrameGenerator);
|
2016-07-18 14:16:23 +00:00
|
|
|
};
|
|
|
|
|
2016-07-27 18:31:03 +00:00
|
|
|
class AtomBeginFrameTimer : public cc::DelayBasedTimeSourceClient {
|
2016-07-18 14:16:23 +00:00
|
|
|
public:
|
2017-04-12 14:15:58 +00:00
|
|
|
AtomBeginFrameTimer(int frame_rate_threshold_us,
|
2016-08-03 03:29:55 +00:00
|
|
|
const base::Closure& callback)
|
2016-07-18 14:16:23 +00:00
|
|
|
: callback_(callback) {
|
2016-09-06 08:24:37 +00:00
|
|
|
time_source_.reset(new cc::DelayBasedTimeSource(
|
2016-11-30 07:30:03 +00:00
|
|
|
content::BrowserThread::GetTaskRunnerForThread(
|
|
|
|
content::BrowserThread::UI).get()));
|
2017-04-12 14:15:58 +00:00
|
|
|
time_source_->SetTimebaseAndInterval(
|
|
|
|
base::TimeTicks(),
|
|
|
|
base::TimeDelta::FromMicroseconds(frame_rate_threshold_us));
|
2016-07-18 14:16:23 +00:00
|
|
|
time_source_->SetClient(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetActive(bool active) {
|
|
|
|
time_source_->SetActive(active);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsActive() const {
|
|
|
|
return time_source_->Active();
|
|
|
|
}
|
|
|
|
|
2017-04-12 14:15:58 +00:00
|
|
|
void SetFrameRateThresholdUs(int frame_rate_threshold_us) {
|
2016-07-18 14:16:23 +00:00
|
|
|
time_source_->SetTimebaseAndInterval(
|
|
|
|
base::TimeTicks::Now(),
|
2017-04-12 14:15:58 +00:00
|
|
|
base::TimeDelta::FromMicroseconds(frame_rate_threshold_us));
|
2016-07-18 14:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void OnTimerTick() override {
|
|
|
|
callback_.Run();
|
|
|
|
}
|
|
|
|
|
|
|
|
const base::Closure callback_;
|
|
|
|
std::unique_ptr<cc::DelayBasedTimeSource> time_source_;
|
|
|
|
|
2016-07-27 18:31:03 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomBeginFrameTimer);
|
2016-07-18 14:16:23 +00:00
|
|
|
};
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(
|
2016-08-03 04:46:34 +00:00
|
|
|
bool transparent,
|
2016-08-04 04:03:24 +00:00
|
|
|
const OnPaintCallback& callback,
|
2016-08-03 04:46:34 +00:00
|
|
|
content::RenderWidgetHost* host,
|
2017-03-04 02:09:16 +00:00
|
|
|
OffScreenRenderWidgetHostView* parent_host_view,
|
2016-08-03 04:46:34 +00:00
|
|
|
NativeWindow* native_window)
|
|
|
|
: render_widget_host_(content::RenderWidgetHostImpl::From(host)),
|
2017-03-04 02:09:16 +00:00
|
|
|
parent_host_view_(parent_host_view),
|
|
|
|
popup_host_view_(nullptr),
|
|
|
|
child_host_view_(nullptr),
|
2016-08-03 04:46:34 +00:00
|
|
|
native_window_(native_window),
|
|
|
|
software_output_device_(nullptr),
|
2016-08-04 04:03:24 +00:00
|
|
|
transparent_(transparent),
|
|
|
|
callback_(callback),
|
2017-03-04 02:09:16 +00:00
|
|
|
parent_callback_(nullptr),
|
2016-08-03 04:46:34 +00:00
|
|
|
frame_rate_(60),
|
2017-04-12 14:15:58 +00:00
|
|
|
frame_rate_threshold_us_(0),
|
2016-08-03 04:46:34 +00:00
|
|
|
last_time_(base::Time::Now()),
|
|
|
|
scale_factor_(kDefaultScaleFactor),
|
2017-03-14 11:56:24 +00:00
|
|
|
size_(native_window->GetSize()),
|
2017-03-04 02:09:16 +00:00
|
|
|
painting_(true),
|
2016-08-03 04:46:34 +00:00
|
|
|
is_showing_(!render_widget_host_->is_hidden()),
|
2017-03-04 02:09:16 +00:00
|
|
|
is_destroyed_(false),
|
|
|
|
popup_position_(gfx::Rect()),
|
|
|
|
hold_resize_(false),
|
|
|
|
pending_resize_(false),
|
2016-08-03 04:46:34 +00:00
|
|
|
weak_ptr_factory_(this) {
|
2016-07-13 15:43:00 +00:00
|
|
|
DCHECK(render_widget_host_);
|
2017-05-02 01:57:40 +00:00
|
|
|
bool is_guest_view_hack = parent_host_view_ != nullptr;
|
2017-05-02 18:46:07 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
2017-01-26 07:10:28 +00:00
|
|
|
delegated_frame_host_ = base::MakeUnique<content::DelegatedFrameHost>(
|
2017-04-05 08:31:22 +00:00
|
|
|
AllocateFrameSinkId(is_guest_view_hack), this);
|
2017-01-26 07:10:28 +00:00
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
root_layer_.reset(new ui::Layer(ui::LAYER_SOLID_COLOR));
|
|
|
|
#endif
|
|
|
|
|
2016-07-27 16:02:54 +00:00
|
|
|
#if defined(OS_MACOSX)
|
2017-04-05 08:31:22 +00:00
|
|
|
CreatePlatformWidget(is_guest_view_hack);
|
2016-08-03 04:46:34 +00:00
|
|
|
#else
|
2017-04-05 08:31:22 +00:00
|
|
|
// On macOS the ui::Compositor is created/owned by the platform view.
|
|
|
|
content::ImageTransportFactory* factory =
|
|
|
|
content::ImageTransportFactory::GetInstance();
|
|
|
|
ui::ContextFactoryPrivate* context_factory_private =
|
|
|
|
factory->GetContextFactoryPrivate();
|
2016-07-18 14:16:23 +00:00
|
|
|
compositor_.reset(
|
2017-04-05 08:31:22 +00:00
|
|
|
new ui::Compositor(context_factory_private->AllocateFrameSinkId(),
|
|
|
|
content::GetContextFactory(), context_factory_private,
|
2016-07-18 14:16:23 +00:00
|
|
|
base::ThreadTaskRunnerHandle::Get()));
|
2016-08-03 04:46:34 +00:00
|
|
|
compositor_->SetAcceleratedWidget(native_window_->GetAcceleratedWidget());
|
2016-07-13 15:43:00 +00:00
|
|
|
compositor_->SetRootLayer(root_layer_.get());
|
2016-09-07 08:33:09 +00:00
|
|
|
#endif
|
2016-09-23 18:27:05 +00:00
|
|
|
GetCompositor()->SetDelegate(this);
|
2016-07-25 13:55:00 +00:00
|
|
|
|
2016-09-16 18:43:07 +00:00
|
|
|
native_window_->AddObserver(this);
|
|
|
|
|
2016-07-25 13:55:00 +00:00
|
|
|
ResizeRootLayer();
|
2017-03-04 02:09:16 +00:00
|
|
|
render_widget_host_->SetView(this);
|
|
|
|
InstallTransparency();
|
2016-07-22 11:55:58 +00:00
|
|
|
}
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2016-07-29 22:51:19 +00:00
|
|
|
OffScreenRenderWidgetHostView::~OffScreenRenderWidgetHostView() {
|
2016-09-19 07:51:03 +00:00
|
|
|
if (native_window_)
|
|
|
|
native_window_->RemoveObserver(this);
|
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
if (is_showing_)
|
|
|
|
browser_compositor_->SetRenderWidgetHostIsHidden(true);
|
|
|
|
#else
|
|
|
|
// Marking the DelegatedFrameHost as removed from the window hierarchy is
|
|
|
|
// necessary to remove all connections to its old ui::Compositor.
|
2016-07-29 22:51:19 +00:00
|
|
|
if (is_showing_)
|
|
|
|
delegated_frame_host_->WasHidden();
|
|
|
|
delegated_frame_host_->ResetCompositor();
|
2016-09-07 08:33:09 +00:00
|
|
|
#endif
|
2016-07-29 22:51:19 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
if (copy_frame_generator_.get())
|
|
|
|
copy_frame_generator_.reset(NULL);
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2016-08-02 10:56:03 +00:00
|
|
|
#if defined(OS_MACOSX)
|
2016-07-29 22:51:19 +00:00
|
|
|
DestroyPlatformWidget();
|
2017-03-04 02:09:16 +00:00
|
|
|
#else
|
|
|
|
delegated_frame_host_.reset(NULL);
|
|
|
|
compositor_.reset(NULL);
|
|
|
|
root_layer_.reset(NULL);
|
2016-08-02 10:56:03 +00:00
|
|
|
#endif
|
2016-07-18 14:16:23 +00:00
|
|
|
}
|
|
|
|
|
2017-04-05 08:31:22 +00:00
|
|
|
void OffScreenRenderWidgetHostView::OnWindowResize() {
|
|
|
|
// In offscreen mode call RenderWidgetHostView's SetSize explicitly
|
|
|
|
auto size = native_window_->GetSize();
|
|
|
|
SetSize(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::OnWindowClosed() {
|
|
|
|
native_window_->RemoveObserver(this);
|
|
|
|
native_window_ = nullptr;
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::OnBeginFrameTimerTick() {
|
2016-07-18 14:16:23 +00:00
|
|
|
const base::TimeTicks frame_time = base::TimeTicks::Now();
|
|
|
|
const base::TimeDelta vsync_period =
|
2017-04-12 14:15:58 +00:00
|
|
|
base::TimeDelta::FromMicroseconds(frame_rate_threshold_us_);
|
2016-07-18 14:16:23 +00:00
|
|
|
SendBeginFrame(frame_time, vsync_period);
|
|
|
|
}
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SendBeginFrame(
|
|
|
|
base::TimeTicks frame_time, base::TimeDelta vsync_period) {
|
2016-07-18 14:16:23 +00:00
|
|
|
base::TimeTicks display_time = frame_time + vsync_period;
|
|
|
|
|
|
|
|
base::TimeDelta estimated_browser_composite_time =
|
|
|
|
base::TimeDelta::FromMicroseconds(
|
|
|
|
(1.0f * base::Time::kMicrosecondsPerSecond) / (3.0f * 60));
|
|
|
|
|
|
|
|
base::TimeTicks deadline = display_time - estimated_browser_composite_time;
|
|
|
|
|
2017-04-05 08:31:22 +00:00
|
|
|
const cc::BeginFrameArgs& begin_frame_args =
|
|
|
|
cc::BeginFrameArgs::Create(BEGINFRAME_FROM_HERE,
|
|
|
|
begin_frame_source_.source_id(),
|
|
|
|
begin_frame_number_, frame_time, deadline,
|
|
|
|
vsync_period, cc::BeginFrameArgs::NORMAL);
|
|
|
|
DCHECK(begin_frame_args.IsValid());
|
|
|
|
begin_frame_number_++;
|
|
|
|
|
2016-07-18 14:16:23 +00:00
|
|
|
render_widget_host_->Send(new ViewMsg_BeginFrame(
|
|
|
|
render_widget_host_->GetRoutingID(),
|
2017-04-05 08:31:22 +00:00
|
|
|
begin_frame_args));
|
2016-07-18 14:16:23 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 22:51:19 +00:00
|
|
|
bool OffScreenRenderWidgetHostView::OnMessageReceived(
|
|
|
|
const IPC::Message& message) {
|
2016-07-05 19:33:22 +00:00
|
|
|
bool handled = true;
|
2016-07-29 12:50:27 +00:00
|
|
|
IPC_BEGIN_MESSAGE_MAP(OffScreenRenderWidgetHostView, message)
|
2016-07-05 19:33:22 +00:00
|
|
|
IPC_MESSAGE_HANDLER(ViewHostMsg_SetNeedsBeginFrames,
|
2016-12-20 17:03:42 +00:00
|
|
|
SetNeedsBeginFrames)
|
2016-07-05 19:33:22 +00:00
|
|
|
IPC_MESSAGE_UNHANDLED(handled = false)
|
|
|
|
IPC_END_MESSAGE_MAP()
|
2016-07-13 15:43:00 +00:00
|
|
|
|
|
|
|
if (!handled)
|
|
|
|
return content::RenderWidgetHostViewBase::OnMessageReceived(message);
|
2016-07-05 19:33:22 +00:00
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::InitAsChild(gfx::NativeView) {
|
2017-03-04 02:09:16 +00:00
|
|
|
DCHECK(parent_host_view_);
|
|
|
|
|
|
|
|
if (parent_host_view_->child_host_view_) {
|
|
|
|
parent_host_view_->child_host_view_->CancelWidget();
|
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
parent_host_view_->set_child_host_view(this);
|
|
|
|
parent_host_view_->Hide();
|
|
|
|
|
|
|
|
ResizeRootLayer();
|
|
|
|
Show();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 22:51:19 +00:00
|
|
|
content::RenderWidgetHost* OffScreenRenderWidgetHostView::GetRenderWidgetHost()
|
|
|
|
const {
|
2016-07-13 15:43:00 +00:00
|
|
|
return render_widget_host_;
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SetSize(const gfx::Size& size) {
|
2016-07-13 15:43:00 +00:00
|
|
|
size_ = size;
|
2017-03-04 02:09:16 +00:00
|
|
|
WasResized();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SetBounds(const gfx::Rect& new_bounds) {
|
2017-03-04 02:09:16 +00:00
|
|
|
SetSize(new_bounds.size());
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
gfx::Vector2dF OffScreenRenderWidgetHostView::GetLastScrollOffset() const {
|
2016-07-05 19:33:22 +00:00
|
|
|
return last_scroll_offset_;
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
gfx::NativeView OffScreenRenderWidgetHostView::GetNativeView() const {
|
2016-07-27 16:02:54 +00:00
|
|
|
return gfx::NativeView();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 22:51:19 +00:00
|
|
|
gfx::NativeViewAccessible
|
2016-08-03 04:46:34 +00:00
|
|
|
OffScreenRenderWidgetHostView::GetNativeViewAccessible() {
|
2016-07-13 15:43:00 +00:00
|
|
|
return gfx::NativeViewAccessible();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
ui::TextInputClient* OffScreenRenderWidgetHostView::GetTextInputClient() {
|
2016-07-05 19:33:22 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::Focus() {
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
bool OffScreenRenderWidgetHostView::HasFocus() const {
|
2016-07-31 23:01:55 +00:00
|
|
|
return false;
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
bool OffScreenRenderWidgetHostView::IsSurfaceAvailableForCopy() const {
|
2017-04-05 08:31:22 +00:00
|
|
|
return GetDelegatedFrameHost()->CanCopyFromCompositingSurface();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::Show() {
|
2016-07-13 15:43:00 +00:00
|
|
|
if (is_showing_)
|
|
|
|
return;
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2016-07-13 15:43:00 +00:00
|
|
|
is_showing_ = true;
|
2016-09-07 08:33:09 +00:00
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
browser_compositor_->SetRenderWidgetHostIsHidden(false);
|
|
|
|
#else
|
2016-07-13 15:43:00 +00:00
|
|
|
delegated_frame_host_->SetCompositor(compositor_.get());
|
|
|
|
delegated_frame_host_->WasShown(ui::LatencyInfo());
|
2016-09-07 08:33:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (render_widget_host_)
|
|
|
|
render_widget_host_->WasShown(ui::LatencyInfo());
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::Hide() {
|
2016-07-13 15:43:00 +00:00
|
|
|
if (!is_showing_)
|
|
|
|
return;
|
|
|
|
|
2016-07-18 14:16:23 +00:00
|
|
|
if (render_widget_host_)
|
|
|
|
render_widget_host_->WasHidden();
|
2016-09-07 08:33:09 +00:00
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
browser_compositor_->SetRenderWidgetHostIsHidden(true);
|
|
|
|
#else
|
|
|
|
GetDelegatedFrameHost()->WasHidden();
|
|
|
|
GetDelegatedFrameHost()->ResetCompositor();
|
|
|
|
#endif
|
|
|
|
|
2016-07-13 15:43:00 +00:00
|
|
|
is_showing_ = false;
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
bool OffScreenRenderWidgetHostView::IsShowing() {
|
2016-07-13 15:43:00 +00:00
|
|
|
return is_showing_;
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
gfx::Rect OffScreenRenderWidgetHostView::GetViewBounds() const {
|
2017-03-04 02:09:16 +00:00
|
|
|
if (IsPopupWidget())
|
|
|
|
return popup_position_;
|
|
|
|
|
2016-07-05 19:33:22 +00:00
|
|
|
return gfx::Rect(size_);
|
|
|
|
}
|
|
|
|
|
2016-08-01 11:27:39 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SetBackgroundColor(SkColor color) {
|
|
|
|
if (transparent_)
|
|
|
|
color = SkColorSetARGB(SK_AlphaTRANSPARENT, 0, 0, 0);
|
|
|
|
|
|
|
|
content::RenderWidgetHostViewBase::SetBackgroundColor(color);
|
|
|
|
|
|
|
|
const bool opaque = !transparent_ && GetBackgroundOpaque();
|
|
|
|
if (render_widget_host_)
|
|
|
|
render_widget_host_->SetBackgroundOpaque(opaque);
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
gfx::Size OffScreenRenderWidgetHostView::GetVisibleViewportSize() const {
|
2016-07-05 19:33:22 +00:00
|
|
|
return size_;
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SetInsets(const gfx::Insets& insets) {
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
bool OffScreenRenderWidgetHostView::LockMouse() {
|
2016-07-05 19:33:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::UnlockMouse() {
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::OnSwapCompositorFrame(
|
2016-07-13 15:43:00 +00:00
|
|
|
uint32_t output_surface_id,
|
2016-09-06 08:24:37 +00:00
|
|
|
cc::CompositorFrame frame) {
|
2016-07-29 22:51:19 +00:00
|
|
|
TRACE_EVENT0("electron",
|
|
|
|
"OffScreenRenderWidgetHostView::OnSwapCompositorFrame");
|
2016-07-13 15:43:00 +00:00
|
|
|
|
2016-09-06 08:24:37 +00:00
|
|
|
if (frame.metadata.root_scroll_offset != last_scroll_offset_) {
|
|
|
|
last_scroll_offset_ = frame.metadata.root_scroll_offset;
|
2016-07-13 15:43:00 +00:00
|
|
|
}
|
|
|
|
|
2017-04-05 08:31:22 +00:00
|
|
|
if (!frame.render_pass_list.empty()) {
|
2016-07-27 17:44:41 +00:00
|
|
|
if (software_output_device_) {
|
2017-03-04 02:09:16 +00:00
|
|
|
if (!begin_frame_timer_.get() || IsPopupWidget()) {
|
2016-08-05 02:35:04 +00:00
|
|
|
software_output_device_->SetActive(painting_);
|
2016-07-27 17:44:41 +00:00
|
|
|
}
|
2016-07-22 11:55:58 +00:00
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
// The compositor will draw directly to the SoftwareOutputDevice which
|
|
|
|
// then calls OnPaint.
|
2017-04-05 08:31:22 +00:00
|
|
|
// We would normally call BrowserCompositorMac::SwapCompositorFrame on
|
|
|
|
// macOS, however it contains compositor resize logic that we don't want.
|
|
|
|
// Consequently we instead call the SwapDelegatedFrame method directly.
|
|
|
|
GetDelegatedFrameHost()->SwapDelegatedFrame(output_surface_id,
|
|
|
|
std::move(frame));
|
2016-07-27 17:44:41 +00:00
|
|
|
} else {
|
|
|
|
if (!copy_frame_generator_.get()) {
|
|
|
|
copy_frame_generator_.reset(
|
2017-04-12 14:15:58 +00:00
|
|
|
new AtomCopyFrameGenerator(this, frame_rate_threshold_us_));
|
2016-07-27 17:44:41 +00:00
|
|
|
}
|
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
// Determine the damage rectangle for the current frame. This is the same
|
|
|
|
// calculation that SwapDelegatedFrame uses.
|
2017-04-05 08:31:22 +00:00
|
|
|
cc::RenderPass* root_pass = frame.render_pass_list.back().get();
|
2016-07-27 17:44:41 +00:00
|
|
|
gfx::Size frame_size = root_pass->output_rect.size();
|
|
|
|
gfx::Rect damage_rect =
|
|
|
|
gfx::ToEnclosingRect(gfx::RectF(root_pass->damage_rect));
|
|
|
|
damage_rect.Intersect(gfx::Rect(frame_size));
|
|
|
|
|
2017-04-05 08:31:22 +00:00
|
|
|
// We would normally call BrowserCompositorMac::SwapCompositorFrame on
|
|
|
|
// macOS, however it contains compositor resize logic that we don't want.
|
|
|
|
// Consequently we instead call the SwapDelegatedFrame method directly.
|
|
|
|
GetDelegatedFrameHost()->SwapDelegatedFrame(output_surface_id,
|
|
|
|
std::move(frame));
|
2016-07-27 17:44:41 +00:00
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
// Request a copy of the last compositor frame which will eventually call
|
|
|
|
// OnPaint asynchronously.
|
2017-04-12 14:15:58 +00:00
|
|
|
copy_frame_generator_->GenerateCopyFrame(damage_rect);
|
2016-07-27 17:44:41 +00:00
|
|
|
}
|
2016-07-18 14:16:23 +00:00
|
|
|
}
|
2016-07-13 15:43:00 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::ClearCompositorFrame() {
|
2016-09-07 08:33:09 +00:00
|
|
|
GetDelegatedFrameHost()->ClearDelegatedFrame();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::InitAsPopup(
|
2016-08-01 10:06:46 +00:00
|
|
|
content::RenderWidgetHostView* parent_host_view, const gfx::Rect& pos) {
|
2017-03-04 02:09:16 +00:00
|
|
|
DCHECK_EQ(parent_host_view_, parent_host_view);
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
if (parent_host_view_->popup_host_view_) {
|
|
|
|
parent_host_view_->popup_host_view_->CancelWidget();
|
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
parent_host_view_->set_popup_host_view(this);
|
|
|
|
parent_host_view_->popup_bitmap_.reset(new SkBitmap);
|
|
|
|
parent_callback_ = base::Bind(&OffScreenRenderWidgetHostView::OnPopupPaint,
|
|
|
|
parent_host_view_->weak_ptr_factory_.GetWeakPtr());
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
popup_position_ = pos;
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
ResizeRootLayer();
|
|
|
|
Show();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 22:51:19 +00:00
|
|
|
void OffScreenRenderWidgetHostView::InitAsFullscreen(
|
2017-03-04 02:09:16 +00:00
|
|
|
content::RenderWidgetHostView *) {
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::UpdateCursor(const content::WebCursor &) {
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SetIsLoading(bool loading) {
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::TextInputStateChanged(
|
2016-07-26 14:52:43 +00:00
|
|
|
const content::TextInputState& params) {
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::ImeCancelComposition() {
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-31 10:19:56 +00:00
|
|
|
void OffScreenRenderWidgetHostView::RenderProcessGone(base::TerminationStatus,
|
|
|
|
int) {
|
2016-07-05 19:33:22 +00:00
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::Destroy() {
|
2017-03-04 02:09:16 +00:00
|
|
|
if (!is_destroyed_) {
|
|
|
|
is_destroyed_ = true;
|
|
|
|
|
|
|
|
if (parent_host_view_ != NULL) {
|
|
|
|
CancelWidget();
|
|
|
|
} else {
|
|
|
|
if (popup_host_view_)
|
|
|
|
popup_host_view_->CancelWidget();
|
|
|
|
popup_bitmap_.reset();
|
|
|
|
if (child_host_view_)
|
|
|
|
child_host_view_->CancelWidget();
|
|
|
|
for (auto guest_host_view : guest_host_views_)
|
|
|
|
guest_host_view->CancelWidget();
|
2017-05-21 17:55:19 +00:00
|
|
|
for (auto proxy_view : proxy_views_)
|
|
|
|
proxy_view->RemoveObserver();
|
2017-03-04 02:09:16 +00:00
|
|
|
Hide();
|
|
|
|
}
|
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2016-07-30 19:25:49 +00:00
|
|
|
delete this;
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SetTooltipText(const base::string16 &) {
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SelectionBoundsChanged(
|
2016-07-13 15:43:00 +00:00
|
|
|
const ViewHostMsg_SelectionBounds_Params &) {
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2017-04-05 08:31:22 +00:00
|
|
|
void OffScreenRenderWidgetHostView::CopyFromSurface(
|
2016-07-31 10:19:56 +00:00
|
|
|
const gfx::Rect& src_subrect,
|
|
|
|
const gfx::Size& dst_size,
|
|
|
|
const content::ReadbackRequestCallback& callback,
|
|
|
|
const SkColorType preferred_color_type) {
|
2016-09-07 08:33:09 +00:00
|
|
|
GetDelegatedFrameHost()->CopyFromCompositingSurface(
|
2016-07-05 19:33:22 +00:00
|
|
|
src_subrect, dst_size, callback, preferred_color_type);
|
|
|
|
}
|
|
|
|
|
2017-04-05 08:31:22 +00:00
|
|
|
void OffScreenRenderWidgetHostView::CopyFromSurfaceToVideoFrame(
|
2016-07-31 10:19:56 +00:00
|
|
|
const gfx::Rect& src_subrect,
|
2017-04-05 08:31:22 +00:00
|
|
|
scoped_refptr<media::VideoFrame> target,
|
2016-07-31 10:19:56 +00:00
|
|
|
const base::Callback<void(const gfx::Rect&, bool)>& callback) {
|
2016-09-07 08:33:09 +00:00
|
|
|
GetDelegatedFrameHost()->CopyFromCompositingSurfaceToVideoFrame(
|
2016-07-05 19:33:22 +00:00
|
|
|
src_subrect, target, callback);
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::BeginFrameSubscription(
|
2016-07-05 19:33:22 +00:00
|
|
|
std::unique_ptr<content::RenderWidgetHostViewFrameSubscriber> subscriber) {
|
2016-09-07 08:33:09 +00:00
|
|
|
GetDelegatedFrameHost()->BeginFrameSubscription(std::move(subscriber));
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::EndFrameSubscription() {
|
2016-09-07 08:33:09 +00:00
|
|
|
GetDelegatedFrameHost()->EndFrameSubscription();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void OffScreenRenderWidgetHostView::InitAsGuest(
|
2017-03-05 15:18:57 +00:00
|
|
|
content::RenderWidgetHostView* parent_host_view,
|
|
|
|
content::RenderWidgetHostViewGuest* guest_view) {
|
2017-03-04 02:09:16 +00:00
|
|
|
parent_host_view_->AddGuestHostView(this);
|
|
|
|
parent_host_view_->RegisterGuestViewFrameSwappedCallback(guest_view);
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
bool OffScreenRenderWidgetHostView::HasAcceleratedSurface(const gfx::Size &) {
|
2016-07-05 19:33:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
gfx::Rect OffScreenRenderWidgetHostView::GetBoundsInRootWindow() {
|
2016-07-05 19:33:22 +00:00
|
|
|
return gfx::Rect(size_);
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::ImeCompositionRangeChanged(
|
2016-07-05 19:33:22 +00:00
|
|
|
const gfx::Range &, const std::vector<gfx::Rect>&) {
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
gfx::Size OffScreenRenderWidgetHostView::GetPhysicalBackingSize() const {
|
2017-03-04 02:09:16 +00:00
|
|
|
return gfx::ConvertSizeToPixel(scale_factor_, GetRequestedRendererSize());
|
2016-07-13 15:43:00 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
gfx::Size OffScreenRenderWidgetHostView::GetRequestedRendererSize() const {
|
2017-03-04 02:09:16 +00:00
|
|
|
return GetDelegatedFrameHost()->GetRequestedRendererSize();
|
2016-07-13 15:43:00 +00:00
|
|
|
}
|
|
|
|
|
2017-03-14 11:56:24 +00:00
|
|
|
content::RenderWidgetHostViewBase*
|
|
|
|
OffScreenRenderWidgetHostView::CreateViewForWidget(
|
|
|
|
content::RenderWidgetHost* render_widget_host,
|
|
|
|
content::RenderWidgetHost* embedder_render_widget_host,
|
|
|
|
content::WebContentsView* web_contents_view) {
|
|
|
|
if (render_widget_host->GetView()) {
|
|
|
|
return static_cast<content::RenderWidgetHostViewBase*>(
|
|
|
|
render_widget_host->GetView());
|
|
|
|
}
|
|
|
|
|
|
|
|
OffScreenRenderWidgetHostView* embedder_host_view = nullptr;
|
|
|
|
if (embedder_render_widget_host) {
|
|
|
|
embedder_host_view = static_cast<OffScreenRenderWidgetHostView*>(
|
|
|
|
embedder_render_widget_host->GetView());
|
|
|
|
}
|
|
|
|
|
|
|
|
return new OffScreenRenderWidgetHostView(
|
|
|
|
transparent_,
|
|
|
|
callback_,
|
|
|
|
render_widget_host,
|
|
|
|
embedder_host_view,
|
|
|
|
native_window_);
|
|
|
|
}
|
|
|
|
|
2016-11-30 07:30:03 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
2016-07-29 12:50:27 +00:00
|
|
|
ui::Layer* OffScreenRenderWidgetHostView::DelegatedFrameHostGetLayer() const {
|
2016-07-13 15:43:00 +00:00
|
|
|
return const_cast<ui::Layer*>(root_layer_.get());
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
bool OffScreenRenderWidgetHostView::DelegatedFrameHostIsVisible() const {
|
2016-07-13 15:43:00 +00:00
|
|
|
return !render_widget_host_->is_hidden();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 22:51:19 +00:00
|
|
|
SkColor OffScreenRenderWidgetHostView::DelegatedFrameHostGetGutterColor(
|
|
|
|
SkColor color) const {
|
2017-03-04 02:09:16 +00:00
|
|
|
if (render_widget_host_->delegate() &&
|
|
|
|
render_widget_host_->delegate()->IsFullscreenForCurrentTab()) {
|
2017-04-12 23:30:46 +00:00
|
|
|
return SK_ColorWHITE;
|
2017-03-04 02:09:16 +00:00
|
|
|
}
|
2016-07-05 19:33:22 +00:00
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
2016-07-29 22:51:19 +00:00
|
|
|
gfx::Size OffScreenRenderWidgetHostView::DelegatedFrameHostDesiredSizeInDIP()
|
|
|
|
const {
|
2017-03-04 02:09:16 +00:00
|
|
|
return GetRootLayer()->bounds().size();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
bool OffScreenRenderWidgetHostView::DelegatedFrameCanCreateResizeLock() const {
|
2017-03-04 02:09:16 +00:00
|
|
|
return !render_widget_host_->auto_resize_enabled();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<content::ResizeLock>
|
2016-07-31 10:19:56 +00:00
|
|
|
OffScreenRenderWidgetHostView::DelegatedFrameHostCreateResizeLock(
|
|
|
|
bool defer_compositor_lock) {
|
2017-03-04 02:09:16 +00:00
|
|
|
return std::unique_ptr<content::ResizeLock>(new AtomResizeLock(
|
|
|
|
this,
|
|
|
|
DelegatedFrameHostDesiredSizeInDIP(),
|
|
|
|
defer_compositor_lock));
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::DelegatedFrameHostResizeLockWasReleased() {
|
2016-07-13 15:43:00 +00:00
|
|
|
return render_widget_host_->WasResized();
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-11-30 07:30:03 +00:00
|
|
|
void
|
|
|
|
OffScreenRenderWidgetHostView::DelegatedFrameHostSendReclaimCompositorResources(
|
|
|
|
int output_surface_id,
|
|
|
|
bool is_swap_ack,
|
|
|
|
const cc::ReturnedResourceArray& resources) {
|
2016-07-13 15:43:00 +00:00
|
|
|
render_widget_host_->Send(new ViewMsg_ReclaimCompositorResources(
|
2016-11-30 07:30:03 +00:00
|
|
|
render_widget_host_->GetRoutingID(), output_surface_id, is_swap_ack,
|
|
|
|
resources));
|
2016-07-05 19:33:22 +00:00
|
|
|
}
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SetBeginFrameSource(
|
|
|
|
cc::BeginFrameSource* source) {
|
2016-08-01 11:27:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-30 07:30:03 +00:00
|
|
|
#endif // !defined(OS_MACOSX)
|
|
|
|
|
2017-04-05 08:31:22 +00:00
|
|
|
bool OffScreenRenderWidgetHostView::TransformPointToLocalCoordSpace(
|
|
|
|
const gfx::Point& point,
|
|
|
|
const cc::SurfaceId& original_surface,
|
|
|
|
gfx::Point* transformed_point) {
|
|
|
|
// Transformations use physical pixels rather than DIP, so conversion
|
|
|
|
// is necessary.
|
|
|
|
gfx::Point point_in_pixels =
|
|
|
|
gfx::ConvertPointToPixel(scale_factor_, point);
|
|
|
|
if (!GetDelegatedFrameHost()->TransformPointToLocalCoordSpace(
|
|
|
|
point_in_pixels, original_surface, transformed_point)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*transformed_point =
|
|
|
|
gfx::ConvertPointToDIP(scale_factor_, *transformed_point);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OffScreenRenderWidgetHostView::TransformPointToCoordSpaceForView(
|
|
|
|
const gfx::Point& point,
|
|
|
|
RenderWidgetHostViewBase* target_view,
|
|
|
|
gfx::Point* transformed_point) {
|
|
|
|
if (target_view == this) {
|
|
|
|
*transformed_point = point;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// In TransformPointToLocalCoordSpace() there is a Point-to-Pixel conversion,
|
|
|
|
// but it is not necessary here because the final target view is responsible
|
|
|
|
// for converting before computing the final transform.
|
|
|
|
return GetDelegatedFrameHost()->TransformPointToCoordSpaceForView(
|
|
|
|
point, target_view, transformed_point);
|
|
|
|
}
|
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void OffScreenRenderWidgetHostView::CancelWidget() {
|
|
|
|
if (render_widget_host_)
|
2017-03-05 15:18:57 +00:00
|
|
|
render_widget_host_->LostCapture();
|
2017-03-04 02:09:16 +00:00
|
|
|
Hide();
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
if (parent_host_view_) {
|
|
|
|
if (parent_host_view_->popup_host_view_ == this) {
|
|
|
|
parent_host_view_->set_popup_host_view(NULL);
|
|
|
|
parent_host_view_->popup_bitmap_.reset();
|
|
|
|
} else if (parent_host_view_->child_host_view_ == this) {
|
|
|
|
parent_host_view_->set_child_host_view(NULL);
|
|
|
|
parent_host_view_->Show();
|
|
|
|
} else {
|
|
|
|
parent_host_view_->RemoveGuestHostView(this);
|
|
|
|
}
|
|
|
|
parent_host_view_ = NULL;
|
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
if (render_widget_host_ && !is_destroyed_) {
|
|
|
|
is_destroyed_ = true;
|
|
|
|
// Results in a call to Destroy().
|
|
|
|
render_widget_host_->ShutdownAndDestroyWidget(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::AddGuestHostView(
|
|
|
|
OffScreenRenderWidgetHostView* guest_host) {
|
|
|
|
guest_host_views_.insert(guest_host);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::RemoveGuestHostView(
|
|
|
|
OffScreenRenderWidgetHostView* guest_host) {
|
|
|
|
guest_host_views_.erase(guest_host);
|
|
|
|
}
|
|
|
|
|
2017-05-21 17:55:19 +00:00
|
|
|
void OffScreenRenderWidgetHostView::AddViewProxy(OffscreenViewProxy* proxy) {
|
|
|
|
proxy->SetObserver(this);
|
|
|
|
proxy_views_.insert(proxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::RemoveViewProxy(OffscreenViewProxy* proxy) {
|
|
|
|
proxy->RemoveObserver();
|
|
|
|
proxy_views_.erase(proxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::ProxyViewDestroyed(
|
|
|
|
OffscreenViewProxy* proxy) {
|
|
|
|
proxy_views_.erase(proxy);
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void OffScreenRenderWidgetHostView::RegisterGuestViewFrameSwappedCallback(
|
|
|
|
content::RenderWidgetHostViewGuest* guest_host_view) {
|
|
|
|
guest_host_view->RegisterFrameSwappedCallback(base::MakeUnique<base::Closure>(
|
|
|
|
base::Bind(&OffScreenRenderWidgetHostView::OnGuestViewFrameSwapped,
|
|
|
|
weak_ptr_factory_.GetWeakPtr(),
|
|
|
|
base::Unretained(guest_host_view))));
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::OnGuestViewFrameSwapped(
|
|
|
|
content::RenderWidgetHostViewGuest* guest_host_view) {
|
|
|
|
InvalidateBounds(
|
|
|
|
gfx::ConvertRectToPixel(scale_factor_, guest_host_view->GetViewBounds()));
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
RegisterGuestViewFrameSwappedCallback(guest_host_view);
|
|
|
|
}
|
|
|
|
|
2016-07-27 17:44:41 +00:00
|
|
|
std::unique_ptr<cc::SoftwareOutputDevice>
|
2016-07-31 10:19:56 +00:00
|
|
|
OffScreenRenderWidgetHostView::CreateSoftwareOutputDevice(
|
|
|
|
ui::Compositor* compositor) {
|
2016-09-07 08:33:09 +00:00
|
|
|
DCHECK_EQ(GetCompositor(), compositor);
|
2016-07-27 16:24:58 +00:00
|
|
|
DCHECK(!copy_frame_generator_);
|
|
|
|
DCHECK(!software_output_device_);
|
2016-07-27 17:59:01 +00:00
|
|
|
|
2017-05-12 22:59:25 +00:00
|
|
|
ResizeRootLayer();
|
|
|
|
|
2016-08-04 04:22:19 +00:00
|
|
|
software_output_device_ = new OffScreenOutputDevice(
|
|
|
|
transparent_,
|
2016-07-29 12:50:27 +00:00
|
|
|
base::Bind(&OffScreenRenderWidgetHostView::OnPaint,
|
2016-07-27 17:44:41 +00:00
|
|
|
weak_ptr_factory_.GetWeakPtr()));
|
2016-07-27 16:24:58 +00:00
|
|
|
return base::WrapUnique(software_output_device_);
|
|
|
|
}
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
bool OffScreenRenderWidgetHostView::InstallTransparency() {
|
|
|
|
if (transparent_) {
|
|
|
|
SetBackgroundColor(SkColor());
|
2016-09-07 08:33:09 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
browser_compositor_->SetHasTransparentBackground(true);
|
|
|
|
#else
|
2016-08-03 04:46:34 +00:00
|
|
|
compositor_->SetHostHasTransparentBackground(true);
|
2016-09-07 08:33:09 +00:00
|
|
|
#endif
|
2016-08-03 04:46:34 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OffScreenRenderWidgetHostView::IsAutoResizeEnabled() const {
|
2017-03-04 02:09:16 +00:00
|
|
|
return render_widget_host_->auto_resize_enabled();
|
2016-08-03 04:46:34 +00:00
|
|
|
}
|
|
|
|
|
2016-12-20 17:03:42 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SetNeedsBeginFrames(
|
|
|
|
bool needs_begin_frames) {
|
|
|
|
SetupFrameRate(false);
|
|
|
|
|
|
|
|
begin_frame_timer_->SetActive(needs_begin_frames);
|
|
|
|
|
|
|
|
if (software_output_device_) {
|
|
|
|
software_output_device_->SetActive(needs_begin_frames && painting_);
|
|
|
|
}
|
2016-07-22 11:55:58 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void CopyBitmapTo(
|
2017-03-05 15:18:57 +00:00
|
|
|
const SkBitmap& destination,
|
|
|
|
const SkBitmap& source,
|
2017-03-04 02:09:16 +00:00
|
|
|
const gfx::Rect& pos) {
|
|
|
|
SkAutoLockPixels source_pixels_lock(source);
|
|
|
|
SkAutoLockPixels destination_pixels_lock(destination);
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
char* src = static_cast<char*>(source.getPixels());
|
|
|
|
char* dest = static_cast<char*>(destination.getPixels());
|
|
|
|
int pixelsize = source.bytesPerPixel();
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-05-21 17:55:19 +00:00
|
|
|
int width = pos.x() + pos.width() <= destination.width() ? pos.width()
|
|
|
|
: pos.width() - ((pos.x() + pos.width()) - destination.width());
|
|
|
|
int height = pos.y() + pos.height() <= destination.height() ? pos.height()
|
|
|
|
: pos.height() - ((pos.y() + pos.height()) - destination.height());
|
|
|
|
|
|
|
|
if (width > 0 && height > 0) {
|
|
|
|
for (int i = 0; i < height; i++) {
|
2017-03-04 02:09:16 +00:00
|
|
|
memcpy(dest + ((pos.y() + i) * destination.width() + pos.x()) * pixelsize,
|
|
|
|
src + (i * source.width()) * pixelsize,
|
2017-05-21 17:55:19 +00:00
|
|
|
width * pixelsize);
|
2017-03-04 02:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
destination.notifyPixelsChanged();
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:50:27 +00:00
|
|
|
void OffScreenRenderWidgetHostView::OnPaint(
|
2016-08-04 04:22:19 +00:00
|
|
|
const gfx::Rect& damage_rect, const SkBitmap& bitmap) {
|
2016-07-29 12:50:27 +00:00
|
|
|
TRACE_EVENT0("electron", "OffScreenRenderWidgetHostView::OnPaint");
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
HoldResize();
|
2017-03-05 15:19:51 +00:00
|
|
|
|
|
|
|
if (parent_callback_) {
|
2017-03-04 02:09:16 +00:00
|
|
|
parent_callback_.Run(damage_rect, bitmap);
|
2017-05-21 17:55:19 +00:00
|
|
|
} else {
|
2017-03-05 15:19:51 +00:00
|
|
|
gfx::Rect damage(damage_rect);
|
2017-04-12 18:54:03 +00:00
|
|
|
|
2017-05-21 17:55:19 +00:00
|
|
|
std::vector<gfx::Rect> damages;
|
|
|
|
std::vector<const SkBitmap*> bitmaps;
|
|
|
|
std::vector<SkBitmap> originals;
|
|
|
|
|
|
|
|
if (popup_host_view_ && popup_bitmap_.get()) {
|
|
|
|
gfx::Rect pos = popup_host_view_->popup_position_;
|
|
|
|
damage.Union(pos);
|
|
|
|
damages.push_back(pos);
|
|
|
|
bitmaps.push_back(popup_bitmap_.get());
|
|
|
|
originals.push_back(SkBitmapOperations::CreateTiledBitmap(bitmap,
|
|
|
|
pos.x(), pos.y(), pos.width(), pos.height()));
|
|
|
|
}
|
2017-04-12 18:54:03 +00:00
|
|
|
|
2017-05-21 17:55:19 +00:00
|
|
|
for (auto proxy_view : proxy_views_) {
|
|
|
|
gfx::Rect pos = proxy_view->GetBounds();
|
|
|
|
damage.Union(pos);
|
|
|
|
damages.push_back(pos);
|
|
|
|
bitmaps.push_back(proxy_view->GetBitmap());
|
|
|
|
originals.push_back(SkBitmapOperations::CreateTiledBitmap(bitmap,
|
|
|
|
pos.x(), pos.y(), pos.width(), pos.height()));
|
|
|
|
}
|
|
|
|
|
2017-05-23 09:41:59 +00:00
|
|
|
for (size_t i = 0; i < damages.size(); i++) {
|
2017-05-21 17:55:19 +00:00
|
|
|
CopyBitmapTo(bitmap, *(bitmaps[i]), damages[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
damage.Intersect(GetViewBounds());
|
2017-03-05 15:19:51 +00:00
|
|
|
callback_.Run(damage, bitmap);
|
2017-05-21 17:55:19 +00:00
|
|
|
|
2017-05-23 09:41:59 +00:00
|
|
|
for (size_t i = 0; i < damages.size(); i++) {
|
2017-05-21 17:55:19 +00:00
|
|
|
CopyBitmapTo(bitmap, originals[i], damages[i]);
|
|
|
|
}
|
2017-03-04 02:09:16 +00:00
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
ReleaseResize();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::OnPopupPaint(
|
|
|
|
const gfx::Rect& damage_rect, const SkBitmap& bitmap) {
|
|
|
|
if (popup_host_view_ && popup_bitmap_.get())
|
|
|
|
bitmap.deepCopyTo(popup_bitmap_.get());
|
2017-04-08 23:24:09 +00:00
|
|
|
InvalidateBounds(popup_host_view_->popup_position_);
|
2017-03-04 02:09:16 +00:00
|
|
|
}
|
|
|
|
|
2017-05-21 17:55:19 +00:00
|
|
|
void OffScreenRenderWidgetHostView::OnProxyViewPaint(
|
|
|
|
const gfx::Rect& damage_rect) {
|
|
|
|
InvalidateBounds(damage_rect);
|
|
|
|
}
|
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void OffScreenRenderWidgetHostView::HoldResize() {
|
|
|
|
if (!hold_resize_)
|
|
|
|
hold_resize_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::ReleaseResize() {
|
|
|
|
if (!hold_resize_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hold_resize_ = false;
|
|
|
|
if (pending_resize_) {
|
|
|
|
pending_resize_ = false;
|
|
|
|
content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE,
|
|
|
|
base::Bind(&OffScreenRenderWidgetHostView::WasResized,
|
|
|
|
weak_ptr_factory_.GetWeakPtr()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::WasResized() {
|
|
|
|
if (hold_resize_) {
|
|
|
|
if (!pending_resize_)
|
|
|
|
pending_resize_ = true;
|
|
|
|
return;
|
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
ResizeRootLayer();
|
|
|
|
if (render_widget_host_)
|
|
|
|
render_widget_host_->WasResized();
|
|
|
|
GetDelegatedFrameHost()->WasResized();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::ProcessKeyboardEvent(
|
|
|
|
const content::NativeWebKeyboardEvent& event) {
|
|
|
|
if (!render_widget_host_)
|
|
|
|
return;
|
|
|
|
render_widget_host_->ForwardKeyboardEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::ProcessMouseEvent(
|
|
|
|
const blink::WebMouseEvent& event,
|
|
|
|
const ui::LatencyInfo& latency) {
|
2017-05-21 17:55:19 +00:00
|
|
|
for (auto proxy_view : proxy_views_) {
|
|
|
|
gfx::Rect bounds = proxy_view->GetBounds();
|
2017-06-16 21:13:28 +00:00
|
|
|
if (bounds.Contains(event.PositionInWidget().x, event.PositionInWidget().y)) {
|
2017-05-21 17:55:19 +00:00
|
|
|
blink::WebMouseEvent proxy_event(event);
|
2017-06-16 21:13:28 +00:00
|
|
|
proxy_event.SetPositionInWidget(
|
|
|
|
proxy_event.PositionInWidget().x - bounds.x(),
|
|
|
|
proxy_event.PositionInWidget().y - bounds.y());
|
2017-05-21 17:55:19 +00:00
|
|
|
|
|
|
|
ui::MouseEvent ui_event = UiMouseEventFromWebMouseEvent(proxy_event);
|
|
|
|
proxy_view->OnEvent(&ui_event);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
if (!IsPopupWidget()) {
|
2017-06-16 21:13:28 +00:00
|
|
|
if (popup_host_view_ && popup_host_view_->popup_position_.Contains(
|
|
|
|
event.PositionInWidget().x, event.PositionInWidget().y)) {
|
2017-03-04 02:09:16 +00:00
|
|
|
blink::WebMouseEvent popup_event(event);
|
2017-06-16 21:13:28 +00:00
|
|
|
popup_event.SetPositionInWidget(
|
|
|
|
popup_event.PositionInWidget().x - popup_host_view_->popup_position_.x(),
|
|
|
|
popup_event.PositionInWidget().y - popup_host_view_->popup_position_.y());
|
2017-03-04 02:09:16 +00:00
|
|
|
|
|
|
|
popup_host_view_->ProcessMouseEvent(popup_event, latency);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-05-21 17:55:19 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
if (!render_widget_host_)
|
|
|
|
return;
|
|
|
|
render_widget_host_->ForwardMouseEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::ProcessMouseWheelEvent(
|
|
|
|
const blink::WebMouseWheelEvent& event,
|
|
|
|
const ui::LatencyInfo& latency) {
|
2017-05-21 17:55:19 +00:00
|
|
|
for (auto proxy_view : proxy_views_) {
|
|
|
|
gfx::Rect bounds = proxy_view->GetBounds();
|
2017-06-16 21:13:28 +00:00
|
|
|
if (bounds.Contains(event.PositionInWidget().x, event.PositionInWidget().y)) {
|
2017-05-21 17:55:19 +00:00
|
|
|
blink::WebMouseWheelEvent proxy_event(event);
|
2017-06-16 21:13:28 +00:00
|
|
|
proxy_event.SetPositionInWidget(
|
|
|
|
proxy_event.PositionInWidget().x - bounds.x(),
|
|
|
|
proxy_event.PositionInWidget().y - bounds.y());
|
2017-05-21 17:55:19 +00:00
|
|
|
|
|
|
|
ui::MouseWheelEvent ui_event =
|
|
|
|
UiMouseWheelEventFromWebMouseEvent(proxy_event);
|
|
|
|
proxy_view->OnEvent(&ui_event);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-03-04 02:09:16 +00:00
|
|
|
if (!IsPopupWidget()) {
|
|
|
|
if (popup_host_view_) {
|
2017-06-16 21:13:28 +00:00
|
|
|
if (popup_host_view_->popup_position_.Contains(
|
|
|
|
event.PositionInWidget().x, event.PositionInWidget().y)) {
|
2017-03-04 02:09:16 +00:00
|
|
|
blink::WebMouseWheelEvent popup_event(event);
|
2017-06-16 21:13:28 +00:00
|
|
|
popup_event.SetPositionInWidget(
|
|
|
|
popup_event.PositionInWidget().x - popup_host_view_->popup_position_.x(),
|
|
|
|
popup_event.PositionInWidget().y - popup_host_view_->popup_position_.y());
|
2017-03-04 02:09:16 +00:00
|
|
|
popup_host_view_->ProcessMouseWheelEvent(popup_event, latency);
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
// Scrolling outside of the popup widget so destroy it.
|
|
|
|
// Execute asynchronously to avoid deleting the widget from inside some
|
|
|
|
// other callback.
|
|
|
|
content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE,
|
|
|
|
base::Bind(&OffScreenRenderWidgetHostView::CancelWidget,
|
|
|
|
popup_host_view_->weak_ptr_factory_.GetWeakPtr()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!render_widget_host_)
|
|
|
|
return;
|
|
|
|
render_widget_host_->ForwardWheelEvent(event);
|
2016-07-27 17:44:41 +00:00
|
|
|
}
|
|
|
|
|
2016-07-30 13:40:16 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SetPainting(bool painting) {
|
|
|
|
painting_ = painting;
|
|
|
|
|
2016-07-31 20:05:36 +00:00
|
|
|
if (software_output_device_) {
|
2016-08-05 02:35:04 +00:00
|
|
|
software_output_device_->SetActive(painting_);
|
2016-07-31 20:05:36 +00:00
|
|
|
}
|
2016-07-30 13:40:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool OffScreenRenderWidgetHostView::IsPainting() const {
|
|
|
|
return painting_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenRenderWidgetHostView::SetFrameRate(int frame_rate) {
|
2017-03-04 02:09:16 +00:00
|
|
|
if (parent_host_view_) {
|
|
|
|
if (parent_host_view_->GetFrameRate() == GetFrameRate())
|
|
|
|
return;
|
2016-07-30 13:40:16 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
frame_rate_ = parent_host_view_->GetFrameRate();
|
|
|
|
} else {
|
|
|
|
if (frame_rate <= 0)
|
|
|
|
frame_rate = 1;
|
|
|
|
if (frame_rate > 60)
|
|
|
|
frame_rate = 60;
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
frame_rate_ = frame_rate;
|
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
for (auto guest_host_view : guest_host_views_)
|
|
|
|
guest_host_view->SetFrameRate(frame_rate);
|
2016-07-30 13:40:16 +00:00
|
|
|
|
|
|
|
SetupFrameRate(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
int OffScreenRenderWidgetHostView::GetFrameRate() const {
|
|
|
|
return frame_rate_;
|
|
|
|
}
|
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
|
|
|
ui::Compositor* OffScreenRenderWidgetHostView::GetCompositor() const {
|
|
|
|
return compositor_.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
ui::Layer* OffScreenRenderWidgetHostView::GetRootLayer() const {
|
|
|
|
return root_layer_.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
content::DelegatedFrameHost*
|
|
|
|
OffScreenRenderWidgetHostView::GetDelegatedFrameHost() const {
|
|
|
|
return delegated_frame_host_.get();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
void OffScreenRenderWidgetHostView::SetupFrameRate(bool force) {
|
2017-04-12 14:15:58 +00:00
|
|
|
if (!force && frame_rate_threshold_us_ != 0)
|
2016-08-03 04:46:34 +00:00
|
|
|
return;
|
|
|
|
|
2017-04-12 14:15:58 +00:00
|
|
|
frame_rate_threshold_us_ = 1000000 / frame_rate_;
|
2016-08-03 04:46:34 +00:00
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
GetCompositor()->vsync_manager()->SetAuthoritativeVSyncInterval(
|
2017-04-12 14:15:58 +00:00
|
|
|
base::TimeDelta::FromMicroseconds(frame_rate_threshold_us_));
|
2016-08-03 04:46:34 +00:00
|
|
|
|
2017-04-12 14:15:58 +00:00
|
|
|
if (copy_frame_generator_.get()) {
|
|
|
|
copy_frame_generator_->set_frame_rate_threshold_us(
|
|
|
|
frame_rate_threshold_us_);
|
2016-08-03 04:46:34 +00:00
|
|
|
}
|
|
|
|
|
2017-04-12 14:15:58 +00:00
|
|
|
if (begin_frame_timer_.get()) {
|
|
|
|
begin_frame_timer_->SetFrameRateThresholdUs(frame_rate_threshold_us_);
|
2016-08-03 04:46:34 +00:00
|
|
|
} else {
|
|
|
|
begin_frame_timer_.reset(new AtomBeginFrameTimer(
|
2017-04-12 14:15:58 +00:00
|
|
|
frame_rate_threshold_us_,
|
2016-08-03 04:46:34 +00:00
|
|
|
base::Bind(&OffScreenRenderWidgetHostView::OnBeginFrameTimerTick,
|
|
|
|
weak_ptr_factory_.GetWeakPtr())));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-01 17:25:12 +00:00
|
|
|
void OffScreenRenderWidgetHostView::Invalidate() {
|
2017-03-04 02:09:16 +00:00
|
|
|
InvalidateBounds(GetViewBounds());
|
|
|
|
}
|
2016-09-01 17:25:12 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void OffScreenRenderWidgetHostView::InvalidateBounds(const gfx::Rect& bounds) {
|
2016-09-01 17:25:12 +00:00
|
|
|
if (software_output_device_) {
|
2017-04-12 17:34:52 +00:00
|
|
|
software_output_device_->OnPaint(bounds);
|
2017-03-30 20:22:40 +00:00
|
|
|
} else if (copy_frame_generator_) {
|
2017-04-12 17:34:52 +00:00
|
|
|
copy_frame_generator_->GenerateCopyFrame(bounds);
|
2016-09-01 17:25:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
void OffScreenRenderWidgetHostView::ResizeRootLayer() {
|
|
|
|
SetupFrameRate(false);
|
|
|
|
|
2017-05-12 22:59:25 +00:00
|
|
|
const float compositorScaleFactor = GetCompositor()->device_scale_factor();
|
|
|
|
const bool scaleFactorDidChange = (compositorScaleFactor != scale_factor_);
|
2016-08-03 04:46:34 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
gfx::Size size;
|
|
|
|
if (!IsPopupWidget())
|
|
|
|
size = GetViewBounds().size();
|
|
|
|
else
|
|
|
|
size = popup_position_.size();
|
2016-08-03 04:46:34 +00:00
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
if (!scaleFactorDidChange && size == GetRootLayer()->bounds().size())
|
2016-08-03 04:46:34 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
const gfx::Size& size_in_pixels =
|
|
|
|
gfx::ConvertSizeToPixel(scale_factor_, size);
|
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
GetRootLayer()->SetBounds(gfx::Rect(size));
|
|
|
|
GetCompositor()->SetScaleAndSize(scale_factor_, size_in_pixels);
|
2016-08-03 04:46:34 +00:00
|
|
|
}
|
|
|
|
|
2017-04-05 08:31:22 +00:00
|
|
|
cc::FrameSinkId OffScreenRenderWidgetHostView::AllocateFrameSinkId(
|
|
|
|
bool is_guest_view_hack) {
|
|
|
|
// GuestViews have two RenderWidgetHostViews and so we need to make sure
|
|
|
|
// we don't have FrameSinkId collisions.
|
|
|
|
// The FrameSinkId generated here must be unique with FrameSinkId allocated
|
|
|
|
// in ContextFactoryPrivate.
|
|
|
|
content::ImageTransportFactory* factory =
|
|
|
|
content::ImageTransportFactory::GetInstance();
|
|
|
|
return is_guest_view_hack
|
|
|
|
? factory->GetContextFactoryPrivate()->AllocateFrameSinkId()
|
|
|
|
: cc::FrameSinkId(base::checked_cast<uint32_t>(
|
|
|
|
render_widget_host_->GetProcess()->GetID()),
|
|
|
|
base::checked_cast<uint32_t>(
|
|
|
|
render_widget_host_->GetRoutingID()));
|
2016-09-19 07:51:03 +00:00
|
|
|
}
|
|
|
|
|
2016-07-05 19:33:22 +00:00
|
|
|
} // namespace atom
|