mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-30 11:04:52 +01:00
8078afe7bf
- Add new CefSettings.windowless_rendering_enabled value that must be enabled when using windowless (off-screen) rendering. - Improve naming and documentation for CefWindowInfo members. - CefBeginTracing now completes asynchronously. - Rename CefEndTracingAsync to CefEndTracing. - Rename CefCompletionHandler to CefCompletionCallback. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1592 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
Index: core/frame/FrameView.cpp
|
|
===================================================================
|
|
--- core/frame/FrameView.cpp (revision 166298)
|
|
+++ core/frame/FrameView.cpp (working copy)
|
|
@@ -168,8 +168,10 @@
|
|
if (!isMainFrame())
|
|
return;
|
|
|
|
+#if 0
|
|
ScrollableArea::setVerticalScrollElasticity(ScrollElasticityAllowed);
|
|
ScrollableArea::setHorizontalScrollElasticity(ScrollElasticityAllowed);
|
|
+#endif
|
|
}
|
|
|
|
PassRefPtr<FrameView> FrameView::create(Frame* frame)
|
|
Index: platform/scroll/ScrollbarThemeMacCommon.mm
|
|
===================================================================
|
|
--- platform/scroll/ScrollbarThemeMacCommon.mm (revision 166298)
|
|
+++ platform/scroll/ScrollbarThemeMacCommon.mm (working copy)
|
|
@@ -369,10 +369,14 @@
|
|
// static
|
|
bool ScrollbarThemeMacCommon::isOverlayAPIAvailable()
|
|
{
|
|
+#if 0
|
|
static bool apiAvailable =
|
|
[NSClassFromString(@"NSScrollerImp") respondsToSelector:@selector(scrollerImpWithStyle:controlSize:horizontal:replacingScrollerImp:)]
|
|
&& [NSClassFromString(@"NSScrollerImpPair") instancesRespondToSelector:@selector(scrollerStyle)];
|
|
return apiAvailable;
|
|
+#else
|
|
+ return false;
|
|
+#endif
|
|
}
|
|
|
|
} // namespace WebCore
|