Title: [185855] trunk/Source/WebKit/mac
Revision
185855
Author
ander...@apple.com
Date
2015-06-22 18:24:02 -0700 (Mon, 22 Jun 2015)

Log Message

Delegates should be formal protocols
https://bugs.webkit.org/show_bug.cgi?id=146222
rdar://problem/17380856

Reviewed by Dan Bernstein.

Flip the switch on OS X and make delegates formal protocols.

* postprocess-headers.sh:

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (185854 => 185855)


--- trunk/Source/WebKit/mac/ChangeLog	2015-06-23 01:09:15 UTC (rev 185854)
+++ trunk/Source/WebKit/mac/ChangeLog	2015-06-23 01:24:02 UTC (rev 185855)
@@ -1,3 +1,15 @@
+2015-06-22  Anders Carlsson  <ander...@apple.com>
+
+        Delegates should be formal protocols
+        https://bugs.webkit.org/show_bug.cgi?id=146222
+        rdar://problem/17380856
+
+        Reviewed by Dan Bernstein.
+
+        Flip the switch on OS X and make delegates formal protocols.
+
+        * postprocess-headers.sh:
+
 2015-06-20  Tim Horton  <timothy_hor...@apple.com>
 
         Deselection of text causes a noticeable jump on force touch machines

Modified: trunk/Source/WebKit/mac/postprocess-headers.sh (185854 => 185855)


--- trunk/Source/WebKit/mac/postprocess-headers.sh	2015-06-23 01:09:15 UTC (rev 185854)
+++ trunk/Source/WebKit/mac/postprocess-headers.sh	2015-06-23 01:24:02 UTC (rev 185855)
@@ -13,7 +13,7 @@
     fi
 
     if [[ ${PLATFORM_NAME} == macosx ]]; then
-        unifdefOptions="-DTARGET_OS_EMBEDDED=0 -DTARGET_OS_IPHONE=0 -DTARGET_IPHONE_SIMULATOR=0";
+        unifdefOptions="-DTARGET_OS_EMBEDDED=0 -DTARGET_OS_IPHONE=0 -DTARGET_IPHONE_SIMULATOR=0 -DWK_ENABLE_FORMAL_DELEGATE_PROTOCOLS=1";
     elif [[ ${PLATFORM_NAME} == *simulator* ]]; then
         unifdefOptions="-DTARGET_OS_EMBEDDED=0 -DTARGET_OS_IPHONE=1 -DTARGET_IPHONE_SIMULATOR=1 -DUSE_APPLE_INTERNAL_SDK=${USE_APPLE_INTERNAL_SDK} -DWK_ENABLE_FORMAL_DELEGATE_PROTOCOLS=1";
     else
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to