Title: [171932] trunk/Source/WebCore
Revision
171932
Author
[email protected]
Date
2014-08-01 11:30:34 -0700 (Fri, 01 Aug 2014)

Log Message

Fix the iOS build after r171891

* platform/ios/ScrollViewIOS.mm:
(WebCore::ScrollView::platformTopContentInset):
(WebCore::ScrollView::platformSetTopContentInset):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (171931 => 171932)


--- trunk/Source/WebCore/ChangeLog	2014-08-01 18:29:28 UTC (rev 171931)
+++ trunk/Source/WebCore/ChangeLog	2014-08-01 18:30:34 UTC (rev 171932)
@@ -1,3 +1,11 @@
+2014-08-01  Tim Horton  <[email protected]>
+
+        Fix the iOS build after r171891
+
+        * platform/ios/ScrollViewIOS.mm:
+        (WebCore::ScrollView::platformTopContentInset):
+        (WebCore::ScrollView::platformSetTopContentInset):
+
 2014-08-01  Pratik Solanki  <[email protected]>
 
         Remove EventNames.h include from header files

Modified: trunk/Source/WebCore/platform/ios/ScrollViewIOS.mm (171931 => 171932)


--- trunk/Source/WebCore/platform/ios/ScrollViewIOS.mm	2014-08-01 18:29:28 UTC (rev 171931)
+++ trunk/Source/WebCore/platform/ios/ScrollViewIOS.mm	2014-08-01 18:30:34 UTC (rev 171932)
@@ -161,12 +161,12 @@
     END_BLOCK_OBJC_EXCEPTIONS;
 }
 
-float ScrollView::platformTopContentInset(float) const
+float ScrollView::platformTopContentInset() const
 {
     return 0;
 }
 
-void ScrollView::platformSetTopContentInset()
+void ScrollView::platformSetTopContentInset(float)
 {
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to