macOS: Fix crash when scrolling in OSR mode (issue #2540)

This commit is contained in:
Marshall Greenblatt
2018-11-06 17:27:26 -05:00
parent bb5fe57984
commit 285dbb1ce6
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,15 @@
diff --git content/browser/renderer_host/input/fling_scheduler_mac.mm content/browser/renderer_host/input/fling_scheduler_mac.mm
index f10c5d161dd1..92a751dd984e 100644
--- content/browser/renderer_host/input/fling_scheduler_mac.mm
+++ content/browser/renderer_host/input/fling_scheduler_mac.mm
@@ -26,6 +26,10 @@
return nullptr;
}
+ // For CEF this will always be false when running in OSR mode.
+ if (!view->GetNativeView())
+ return nullptr;
+
RenderWidgetHostViewMac* mac_view =
static_cast<RenderWidgetHostViewMac*>(view);
if (mac_view->BrowserCompositor())