Title: [182143] trunk/Source/WebCore
Revision
182143
Author
simon.fra...@apple.com
Date
2015-03-30 09:45:12 -0700 (Mon, 30 Mar 2015)

Log Message

Fix iOS internal build after r182132.

* page/scrolling/ScrollingCoordinator.cpp:
(WebCore::ScrollingCoordinator::computeNonFastScrollableRegion):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (182142 => 182143)


--- trunk/Source/WebCore/ChangeLog	2015-03-30 16:29:18 UTC (rev 182142)
+++ trunk/Source/WebCore/ChangeLog	2015-03-30 16:45:12 UTC (rev 182143)
@@ -1,3 +1,10 @@
+2015-03-30  Simon Fraser  <simon.fra...@apple.com>
+
+        Fix iOS internal build after r182132.
+
+        * page/scrolling/ScrollingCoordinator.cpp:
+        (WebCore::ScrollingCoordinator::computeNonFastScrollableRegion):
+
 2015-03-30  Jer Noble  <jer.no...@apple.com>
 
         [iOS] When Web Audio is interrupted by a phone call, it cannot be restarted.

Modified: trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp (182142 => 182143)


--- trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp	2015-03-30 16:29:18 UTC (rev 182142)
+++ trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp	2015-03-30 16:45:12 UTC (rev 182143)
@@ -100,10 +100,10 @@
 {
 #if ENABLE(IOS_TOUCH_EVENTS)
     // On iOS, we use nonFastScrollableRegion to represent the region covered by elements with touch event handlers.
-    ASSERT(frame->isMainFrame());
+    ASSERT(frame.isMainFrame());
     UNUSED_PARAM(frameLocation);
 
-    Document* document = frame->document();
+    Document* document = frame.document();
     if (!document)
         return Region();
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to