Title: [210327] trunk/Source/WebCore
Revision
210327
Author
akl...@apple.com
Date
2017-01-05 07:12:03 -0800 (Thu, 05 Jan 2017)

Log Message

Fix iOS build due to missing #include's.

* history/CachedFrame.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (210326 => 210327)


--- trunk/Source/WebCore/ChangeLog	2017-01-05 13:47:59 UTC (rev 210326)
+++ trunk/Source/WebCore/ChangeLog	2017-01-05 15:12:03 UTC (rev 210327)
@@ -1,5 +1,11 @@
 2017-01-05  Andreas Kling  <akl...@apple.com>
 
+        Fix iOS build due to missing #include's.
+
+        * history/CachedFrame.cpp:
+
+2017-01-05  Andreas Kling  <akl...@apple.com>
+
         Remove ChromeClient::needTouchEvents().
         <https://webkit.org/b/166723>
 

Modified: trunk/Source/WebCore/history/CachedFrame.cpp (210326 => 210327)


--- trunk/Source/WebCore/history/CachedFrame.cpp	2017-01-05 13:47:59 UTC (rev 210326)
+++ trunk/Source/WebCore/history/CachedFrame.cpp	2017-01-05 15:12:03 UTC (rev 210327)
@@ -48,6 +48,11 @@
 #include <wtf/RefCountedLeakCounter.h>
 #include <wtf/text/CString.h>
 
+#if PLATFORM(IOS) || ENABLE(TOUCH_EVENTS)
+#include "Chrome.h"
+#include "ChromeClient.h"
+#endif
+
 namespace WebCore {
 
 DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, cachedFrameCounter, ("CachedFrame"));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to