Title: [157580] trunk/Source/WebKit2
Revision
157580
Author
[email protected]
Date
2013-10-17 11:00:07 -0700 (Thu, 17 Oct 2013)

Log Message

[WK2] REGRESSION(r156472): scrolling coordinator is always enabled incorrectly.
https://bugs.webkit.org/show_bug.cgi?id=122958

Patch by Attila Dusnoki <[email protected]> on 2013-10-17
Reviewed by Tim Horton.

* WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::WebPage): Missing ENABLE(THREADED_SCROLLING) guard added.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (157579 => 157580)


--- trunk/Source/WebKit2/ChangeLog	2013-10-17 17:44:20 UTC (rev 157579)
+++ trunk/Source/WebKit2/ChangeLog	2013-10-17 18:00:07 UTC (rev 157580)
@@ -1,3 +1,13 @@
+2013-10-17  Attila Dusnoki  <[email protected]>
+
+        [WK2] REGRESSION(r156472): scrolling coordinator is always enabled incorrectly.
+        https://bugs.webkit.org/show_bug.cgi?id=122958
+
+        Reviewed by Tim Horton.
+
+        * WebProcess/WebPage/WebPage.cpp:
+        (WebKit::WebPage::WebPage): Missing ENABLE(THREADED_SCROLLING) guard added.
+
 2013-10-17  Mark Rowe  <[email protected]>
 
         <rdar://problem/15183901> WebKit2 XPC services load the wrong frameworks when running

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp (157579 => 157580)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2013-10-17 17:44:20 UTC (rev 157579)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2013-10-17 18:00:07 UTC (rev 157580)
@@ -307,8 +307,10 @@
 
     m_page = adoptPtr(new Page(pageClients));
 
+#if ENABLE(THREADED_SCROLLING)
     m_useThreadedScrolling = parameters.store.getBoolValueForKey(WebPreferencesKey::threadedScrollingEnabledKey());
     m_page->settings().setScrollingCoordinatorEnabled(m_useThreadedScrolling);
+#endif
 
     m_drawingArea = DrawingArea::create(this, parameters);
     m_drawingArea->setPaintingEnabled(false);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to