2016-07-06 21:34:09 +02:00
|
|
|
diff --git content/browser/renderer_host/browser_compositor_view_mac.h content/browser/renderer_host/browser_compositor_view_mac.h
|
2017-04-20 21:28:17 +02:00
|
|
|
index 1c73b7f..606f29c 100644
|
2016-07-06 21:34:09 +02:00
|
|
|
--- content/browser/renderer_host/browser_compositor_view_mac.h
|
|
|
|
+++ content/browser/renderer_host/browser_compositor_view_mac.h
|
2017-04-20 21:28:17 +02:00
|
|
|
@@ -51,9 +51,11 @@ class BrowserCompositorMac : public DelegatedFrameHostClient {
|
2016-07-21 23:21:32 +02:00
|
|
|
|
|
|
|
// These will not return nullptr until Destroy is called.
|
|
|
|
DelegatedFrameHost* GetDelegatedFrameHost();
|
|
|
|
+ ui::Layer* GetRootLayer() { return root_layer_.get(); }
|
2016-07-06 21:34:09 +02:00
|
|
|
|
|
|
|
// This may return nullptr, if this has detached itself from its
|
|
|
|
// ui::Compositor.
|
|
|
|
+ ui::Compositor* GetCompositor();
|
|
|
|
ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac();
|
|
|
|
|
2017-04-20 21:28:17 +02:00
|
|
|
void DidCreateNewRendererCompositorFrameSink(
|
2016-07-06 21:34:09 +02:00
|
|
|
diff --git content/browser/renderer_host/browser_compositor_view_mac.mm content/browser/renderer_host/browser_compositor_view_mac.mm
|
2017-04-20 21:28:17 +02:00
|
|
|
index fba983b..8cf9629 100644
|
2016-07-06 21:34:09 +02:00
|
|
|
--- content/browser/renderer_host/browser_compositor_view_mac.mm
|
|
|
|
+++ content/browser/renderer_host/browser_compositor_view_mac.mm
|
2017-04-20 21:28:17 +02:00
|
|
|
@@ -202,6 +202,12 @@ BrowserCompositorMac::~BrowserCompositorMac() {
|
2016-08-31 13:25:56 +02:00
|
|
|
g_spare_recyclable_compositors.Get().clear();
|
2016-07-06 21:34:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ui::Compositor* BrowserCompositorMac::GetCompositor() {
|
|
|
|
+ if (recyclable_compositor_)
|
|
|
|
+ return recyclable_compositor_->compositor();
|
|
|
|
+ return nullptr;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
ui::AcceleratedWidgetMac* BrowserCompositorMac::GetAcceleratedWidgetMac() {
|
|
|
|
if (recyclable_compositor_)
|
|
|
|
return recyclable_compositor_->accelerated_widget_mac();
|
2017-04-20 21:28:17 +02:00
|
|
|
@@ -421,8 +427,13 @@ SkColor BrowserCompositorMac::DelegatedFrameHostGetGutterColor(
|
2016-07-21 23:21:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Size BrowserCompositorMac::DelegatedFrameHostDesiredSizeInDIP() const {
|
|
|
|
- NSRect bounds = [client_->BrowserCompositorMacGetNSView() bounds];
|
|
|
|
- return gfx::Size(bounds.size.width, bounds.size.height);
|
|
|
|
+ // View will be nil with CEF OSR.
|
|
|
|
+ NSView* view = client_->BrowserCompositorMacGetNSView();
|
|
|
|
+ if (view) {
|
|
|
|
+ NSRect bounds = [view bounds];
|
|
|
|
+ return gfx::Size(bounds.size.width, bounds.size.height);
|
|
|
|
+ }
|
|
|
|
+ return root_layer_->bounds().size();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BrowserCompositorMac::DelegatedFrameCanCreateResizeLock() const {
|