Title: [224330] trunk
Revision
224330
Author
fred.w...@free.fr
Date
2017-11-02 06:56:48 -0700 (Thu, 02 Nov 2017)

Log Message

Add references to bug 179167 in FIXME comments
https://bugs.webkit.org/show_bug.cgi?id=179168

Patch by Frederic Wang <fw...@igalia.com> on 2017-11-02
Reviewed by Daniel Bates.

Source/_javascript_Core:

* Configurations/FeatureDefines.xcconfig:

Source/WebCore:

* Configurations/FeatureDefines.xcconfig:

Source/WebCore/PAL:

* Configurations/FeatureDefines.xcconfig:

Source/WebKit:

* Configurations/FeatureDefines.xcconfig:

Source/WebKitLegacy/mac:

* Configurations/FeatureDefines.xcconfig:

Source/WTF:

* wtf/FeatureDefines.h:

Tools:

* TestWebKitAPI/Configurations/FeatureDefines.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (224329 => 224330)


--- trunk/Source/_javascript_Core/ChangeLog	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-11-02 13:56:48 UTC (rev 224330)
@@ -1,3 +1,12 @@
+2017-11-02  Frederic Wang  <fw...@igalia.com>
+
+        Add references to bug 179167 in FIXME comments
+        https://bugs.webkit.org/show_bug.cgi?id=179168
+
+        Reviewed by Daniel Bates.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-11-01  Jeremy Jones  <jere...@apple.com>
 
         Implement WKFullscreenWindowController for iOS.

Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (224329 => 224330)


--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2017-11-02 13:56:48 UTC (rev 224330)
@@ -189,7 +189,7 @@
 ENABLE_USER_MESSAGE_HANDLERS = ENABLE_USER_MESSAGE_HANDLERS;
 
 // FIXME: Remove the USE_INTERNAL_SDK condition once we support touch events when building for iOS with
-// the public SDK. We will also need to update FeatureDefines.h.
+// the public SDK. See <https://webkit.org/b/179167>.
 ENABLE_TOUCH_EVENTS[sdk=iphone*] = $(ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_$(USE_INTERNAL_SDK));
 ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_YES = ENABLE_TOUCH_EVENTS;
 

Modified: trunk/Source/WTF/ChangeLog (224329 => 224330)


--- trunk/Source/WTF/ChangeLog	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/WTF/ChangeLog	2017-11-02 13:56:48 UTC (rev 224330)
@@ -1,3 +1,12 @@
+2017-11-02  Frederic Wang  <fw...@igalia.com>
+
+        Add references to bug 179167 in FIXME comments
+        https://bugs.webkit.org/show_bug.cgi?id=179168
+
+        Reviewed by Daniel Bates.
+
+        * wtf/FeatureDefines.h:
+
 2017-11-01  Jiewen Tan  <jiewen_...@apple.com>
 
         Let is<T>() accept RefPtrs

Modified: trunk/Source/WTF/wtf/FeatureDefines.h (224329 => 224330)


--- trunk/Source/WTF/wtf/FeatureDefines.h	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/WTF/wtf/FeatureDefines.h	2017-11-02 13:56:48 UTC (rev 224330)
@@ -139,7 +139,7 @@
 #endif
 
 /* FIXME: Remove the USE(APPLE_INTERNAL_SDK) conjunct once we support touch events when building against
-the public iOS SDK. We will also need to update the FeatureDefines.xcconfig files. */
+the public iOS SDK. See <https://webkit.org/b/179167>. */
 #if !defined(ENABLE_TOUCH_EVENTS) && USE(APPLE_INTERNAL_SDK)
 #define ENABLE_TOUCH_EVENTS 1
 #endif

Modified: trunk/Source/WebCore/ChangeLog (224329 => 224330)


--- trunk/Source/WebCore/ChangeLog	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/WebCore/ChangeLog	2017-11-02 13:56:48 UTC (rev 224330)
@@ -1,3 +1,12 @@
+2017-11-02  Frederic Wang  <fw...@igalia.com>
+
+        Add references to bug 179167 in FIXME comments
+        https://bugs.webkit.org/show_bug.cgi?id=179168
+
+        Reviewed by Daniel Bates.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-11-02  Antti Koivisto  <an...@apple.com>
 
         Remove empty continuations in RenderObject::removeFromParentAndDestroyCleaningUpAnonymousWrappers

Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (224329 => 224330)


--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2017-11-02 13:56:48 UTC (rev 224330)
@@ -189,7 +189,7 @@
 ENABLE_USER_MESSAGE_HANDLERS = ENABLE_USER_MESSAGE_HANDLERS;
 
 // FIXME: Remove the USE_INTERNAL_SDK condition once we support touch events when building for iOS with
-// the public SDK. We will also need to update FeatureDefines.h.
+// the public SDK. See <https://webkit.org/b/179167>.
 ENABLE_TOUCH_EVENTS[sdk=iphone*] = $(ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_$(USE_INTERNAL_SDK));
 ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_YES = ENABLE_TOUCH_EVENTS;
 

Modified: trunk/Source/WebCore/PAL/ChangeLog (224329 => 224330)


--- trunk/Source/WebCore/PAL/ChangeLog	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/WebCore/PAL/ChangeLog	2017-11-02 13:56:48 UTC (rev 224330)
@@ -1,3 +1,12 @@
+2017-11-02  Frederic Wang  <fw...@igalia.com>
+
+        Add references to bug 179167 in FIXME comments
+        https://bugs.webkit.org/show_bug.cgi?id=179168
+
+        Reviewed by Daniel Bates.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-11-01  Jeremy Jones  <jere...@apple.com>
 
         Implement WKFullscreenWindowController for iOS.

Modified: trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig (224329 => 224330)


--- trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig	2017-11-02 13:56:48 UTC (rev 224330)
@@ -189,7 +189,7 @@
 ENABLE_USER_MESSAGE_HANDLERS = ENABLE_USER_MESSAGE_HANDLERS;
 
 // FIXME: Remove the USE_INTERNAL_SDK condition once we support touch events when building for iOS with
-// the public SDK. We will also need to update FeatureDefines.h.
+// the public SDK. See <https://webkit.org/b/179167>.
 ENABLE_TOUCH_EVENTS[sdk=iphone*] = $(ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_$(USE_INTERNAL_SDK));
 ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_YES = ENABLE_TOUCH_EVENTS;
 

Modified: trunk/Source/WebKit/ChangeLog (224329 => 224330)


--- trunk/Source/WebKit/ChangeLog	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/WebKit/ChangeLog	2017-11-02 13:56:48 UTC (rev 224330)
@@ -1,3 +1,12 @@
+2017-11-02  Frederic Wang  <fw...@igalia.com>
+
+        Add references to bug 179167 in FIXME comments
+        https://bugs.webkit.org/show_bug.cgi?id=179168
+
+        Reviewed by Daniel Bates.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-11-01  Jeremy Jones  <jere...@apple.com>
 
         Implement WKFullscreenWindowController for iOS.

Modified: trunk/Source/WebKit/Configurations/FeatureDefines.xcconfig (224329 => 224330)


--- trunk/Source/WebKit/Configurations/FeatureDefines.xcconfig	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/WebKit/Configurations/FeatureDefines.xcconfig	2017-11-02 13:56:48 UTC (rev 224330)
@@ -189,7 +189,7 @@
 ENABLE_USER_MESSAGE_HANDLERS = ENABLE_USER_MESSAGE_HANDLERS;
 
 // FIXME: Remove the USE_INTERNAL_SDK condition once we support touch events when building for iOS with
-// the public SDK. We will also need to update FeatureDefines.h.
+// the public SDK. See <https://webkit.org/b/179167>.
 ENABLE_TOUCH_EVENTS[sdk=iphone*] = $(ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_$(USE_INTERNAL_SDK));
 ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_YES = ENABLE_TOUCH_EVENTS;
 

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (224329 => 224330)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2017-11-02 13:56:48 UTC (rev 224330)
@@ -1,3 +1,12 @@
+2017-11-02  Frederic Wang  <fw...@igalia.com>
+
+        Add references to bug 179167 in FIXME comments
+        https://bugs.webkit.org/show_bug.cgi?id=179168
+
+        Reviewed by Daniel Bates.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-11-01  Jeremy Jones  <jere...@apple.com>
 
         Implement WKFullscreenWindowController for iOS.

Modified: trunk/Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig (224329 => 224330)


--- trunk/Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig	2017-11-02 13:56:48 UTC (rev 224330)
@@ -189,7 +189,7 @@
 ENABLE_USER_MESSAGE_HANDLERS = ENABLE_USER_MESSAGE_HANDLERS;
 
 // FIXME: Remove the USE_INTERNAL_SDK condition once we support touch events when building for iOS with
-// the public SDK. We will also need to update FeatureDefines.h.
+// the public SDK. See <https://webkit.org/b/179167>.
 ENABLE_TOUCH_EVENTS[sdk=iphone*] = $(ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_$(USE_INTERNAL_SDK));
 ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_YES = ENABLE_TOUCH_EVENTS;
 

Modified: trunk/Tools/ChangeLog (224329 => 224330)


--- trunk/Tools/ChangeLog	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Tools/ChangeLog	2017-11-02 13:56:48 UTC (rev 224330)
@@ -1,3 +1,12 @@
+2017-11-02  Frederic Wang  <fw...@igalia.com>
+
+        Add references to bug 179167 in FIXME comments
+        https://bugs.webkit.org/show_bug.cgi?id=179168
+
+        Reviewed by Daniel Bates.
+
+        * TestWebKitAPI/Configurations/FeatureDefines.xcconfig:
+
 2017-11-01  Jeremy Jones  <jere...@apple.com>
 
         Implement WKFullscreenWindowController for iOS.

Modified: trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig (224329 => 224330)


--- trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig	2017-11-02 13:41:16 UTC (rev 224329)
+++ trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig	2017-11-02 13:56:48 UTC (rev 224330)
@@ -189,7 +189,7 @@
 ENABLE_USER_MESSAGE_HANDLERS = ENABLE_USER_MESSAGE_HANDLERS;
 
 // FIXME: Remove the USE_INTERNAL_SDK condition once we support touch events when building for iOS with
-// the public SDK. We will also need to update FeatureDefines.h.
+// the public SDK. See <https://webkit.org/b/179167>.
 ENABLE_TOUCH_EVENTS[sdk=iphone*] = $(ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_$(USE_INTERNAL_SDK));
 ENABLE_TOUCH_EVENTS_ios_WITH_INTERNAL_SDK_YES = ENABLE_TOUCH_EVENTS;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to