Title: [106240] trunk/Source
Revision
106240
Author
[email protected]
Date
2012-01-30 06:25:19 -0800 (Mon, 30 Jan 2012)

Log Message

Unreviewed. Fix make distcheck.

Source/WebCore:

* GNUmakefile.am: Add idl files in Source/WebCore/html/shadow/ to
EXTRA_DIST.
* GNUmakefile.list.am: Add missing files.

Source/WebKit2:

* GNUmakefile.am: Add missing files.
* WebProcess/WebPage/TapHighlightController.cpp: Add #if
ENABLE(TOUCH_EVENTS).

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (106239 => 106240)


--- trunk/Source/WebCore/ChangeLog	2012-01-30 13:34:51 UTC (rev 106239)
+++ trunk/Source/WebCore/ChangeLog	2012-01-30 14:25:19 UTC (rev 106240)
@@ -1,3 +1,11 @@
+2012-01-30  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix make distcheck.
+
+        * GNUmakefile.am: Add idl files in Source/WebCore/html/shadow/ to
+        EXTRA_DIST.
+        * GNUmakefile.list.am: Add missing files.
+
 2012-01-27  Vsevolod Vlasov  <[email protected]>
 
         Web Inspector: TabbedEditorContainer should save open tabs.

Modified: trunk/Source/WebCore/GNUmakefile.am (106239 => 106240)


--- trunk/Source/WebCore/GNUmakefile.am	2012-01-30 13:34:51 UTC (rev 106239)
+++ trunk/Source/WebCore/GNUmakefile.am	2012-01-30 14:25:19 UTC (rev 106240)
@@ -885,6 +885,7 @@
 	$(shell ls $(srcdir)/Source/WebCore/dom/*.idl) \
 	$(shell ls $(srcdir)/Source/WebCore/fileapi/*.idl) \
 	$(shell ls $(srcdir)/Source/WebCore/html/canvas/*.idl) \
+	$(shell ls $(srcdir)/Source/WebCore/html/shadow/*.idl) \
 	$(shell ls $(srcdir)/Source/WebCore/html/track/*.idl) \
 	$(shell ls $(srcdir)/Source/WebCore/html/*.idl) \
 	$(shell ls $(srcdir)/Source/WebCore/inspector/*.idl) \

Modified: trunk/Source/WebCore/GNUmakefile.list.am (106239 => 106240)


--- trunk/Source/WebCore/GNUmakefile.list.am	2012-01-30 13:34:51 UTC (rev 106239)
+++ trunk/Source/WebCore/GNUmakefile.list.am	2012-01-30 14:25:19 UTC (rev 106240)
@@ -2703,6 +2703,8 @@
 	Source/WebCore/page/GeolocationError.h \
 	Source/WebCore/page/GeolocationPosition.h \
 	Source/WebCore/page/Geoposition.h \
+	Source/WebCore/page/GestureTapHighlighter.cpp \
+	Source/WebCore/page/GestureTapHighlighter.h \
 	Source/WebCore/page/GroupSettings.cpp \
 	Source/WebCore/page/GroupSettings.h \
 	Source/WebCore/page/History.cpp \
@@ -2737,6 +2739,8 @@
 	Source/WebCore/page/PerformanceTiming.cpp \
 	Source/WebCore/page/PerformanceTiming.h \
 	Source/WebCore/page/PointerLock.h \
+	Source/WebCore/page/PointerLockController.cpp \
+	Source/WebCore/page/PointerLockController.h \
 	Source/WebCore/page/PositionCallback.h \
 	Source/WebCore/page/PositionError.h \
 	Source/WebCore/page/PositionErrorCallback.h \
@@ -3756,6 +3760,7 @@
 	Source/WebCore/rendering/svg/SVGRootInlineBox.h \
 	Source/WebCore/rendering/svg/SVGShadowTreeElements.cpp \
 	Source/WebCore/rendering/svg/SVGShadowTreeElements.h \
+	Source/WebCore/rendering/svg/SVGSubpathData.h \
 	Source/WebCore/rendering/svg/SVGTextChunk.cpp \
 	Source/WebCore/rendering/svg/SVGTextChunk.h \
 	Source/WebCore/rendering/svg/SVGTextChunkBuilder.cpp \

Modified: trunk/Source/WebKit2/ChangeLog (106239 => 106240)


--- trunk/Source/WebKit2/ChangeLog	2012-01-30 13:34:51 UTC (rev 106239)
+++ trunk/Source/WebKit2/ChangeLog	2012-01-30 14:25:19 UTC (rev 106240)
@@ -1,3 +1,11 @@
+2012-01-30  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix make distcheck.
+
+        * GNUmakefile.am: Add missing files.
+        * WebProcess/WebPage/TapHighlightController.cpp: Add #if
+        ENABLE(TOUCH_EVENTS).
+
 2012-01-29  Sheriff Bot  <[email protected]>
 
         Unreviewed, rolling out r106022.

Modified: trunk/Source/WebKit2/GNUmakefile.am (106239 => 106240)


--- trunk/Source/WebKit2/GNUmakefile.am	2012-01-30 13:34:51 UTC (rev 106239)
+++ trunk/Source/WebKit2/GNUmakefile.am	2012-01-30 14:25:19 UTC (rev 106240)
@@ -539,6 +539,7 @@
 	Source/WebKit2/UIProcess/API/gtk/WebKitNavigationPolicyDecisionPrivate.h \
 	Source/WebKit2/UIProcess/API/gtk/WebKitPolicyDecision.cpp \
 	Source/WebKit2/UIProcess/API/gtk/WebKitPolicyDecision.h \
+	Source/WebKit2/UIProcess/API/gtk/WebKitPolicyDecisionPrivate.h \
 	Source/WebKit2/UIProcess/API/gtk/WebKitPolicyClient.cpp \
 	Source/WebKit2/UIProcess/API/gtk/WebKitPolicyClient.h \
 	Source/WebKit2/UIProcess/API/gtk/WebKitPrivate.h \
@@ -908,6 +909,8 @@
 	Source/WebKit2/WebProcess/WebPage/EventDispatcher.h \
 	Source/WebKit2/WebProcess/WebPage/FindController.cpp \
 	Source/WebKit2/WebProcess/WebPage/FindController.h \
+	Source/WebKit2/WebProcess/WebPage/TapHighlightController.cpp \
+	Source/WebKit2/WebProcess/WebPage/TapHighlightController.h \
 	Source/WebKit2/WebProcess/WebPage/gtk/WebInspectorGtk.cpp \
 	Source/WebKit2/WebProcess/WebPage/gtk/WebPageAccessibilityObject.h \
 	Source/WebKit2/WebProcess/WebPage/gtk/WebPageAccessibilityObject.cpp \

Modified: trunk/Source/WebKit2/WebProcess/WebPage/TapHighlightController.cpp (106239 => 106240)


--- trunk/Source/WebKit2/WebProcess/WebPage/TapHighlightController.cpp	2012-01-30 13:34:51 UTC (rev 106239)
+++ trunk/Source/WebKit2/WebProcess/WebPage/TapHighlightController.cpp	2012-01-30 14:25:19 UTC (rev 106240)
@@ -21,6 +21,8 @@
 #include "config.h"
 #include "TapHighlightController.h"
 
+#if ENABLE(TOUCH_EVENTS)
+
 #include "ShareableBitmap.h"
 #include "WKPage.h"
 #include "WebCoreArgumentCoders.h"
@@ -115,3 +117,5 @@
 }
 
 } // namespace WebKit
+
+#endif // ENABLE(TOUCH_EVENTS)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to