Title: [179903] trunk/Source/WebCore
Revision
179903
Author
[email protected]
Date
2015-02-10 16:19:37 -0800 (Tue, 10 Feb 2015)

Log Message

Fix bindings tests after r179886.

* bindings/scripts/test/ObjC/DOMFloat64Array.h:
* bindings/scripts/test/ObjC/DOMTestActiveDOMObject.h:
* bindings/scripts/test/ObjC/DOMTestCallback.h:
* bindings/scripts/test/ObjC/DOMTestCustomNamedGetter.h:
* bindings/scripts/test/ObjC/DOMTestEventConstructor.h:
* bindings/scripts/test/ObjC/DOMTestEventTarget.h:
* bindings/scripts/test/ObjC/DOMTestException.h:
* bindings/scripts/test/ObjC/DOMTestGenerateIsReachable.h:
* bindings/scripts/test/ObjC/DOMTestInterface.h:
* bindings/scripts/test/ObjC/DOMTestMediaQueryListListener.h:
* bindings/scripts/test/ObjC/DOMTestNamedConstructor.h:
* bindings/scripts/test/ObjC/DOMTestNode.h:
* bindings/scripts/test/ObjC/DOMTestNondeterministic.h:
* bindings/scripts/test/ObjC/DOMTestObj.h:
* bindings/scripts/test/ObjC/DOMTestOverloadedConstructors.h:
* bindings/scripts/test/ObjC/DOMTestSerializedScriptValueInterface.h:
* bindings/scripts/test/ObjC/DOMTestTypedefs.h:
* bindings/scripts/test/ObjC/DOMattribute.h:
* bindings/scripts/test/ObjC/DOMreadonly.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (179902 => 179903)


--- trunk/Source/WebCore/ChangeLog	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/ChangeLog	2015-02-11 00:19:37 UTC (rev 179903)
@@ -1,5 +1,29 @@
 2015-02-10  Alex Christensen  <[email protected]>
 
+        Fix bindings tests after r179886.
+
+        * bindings/scripts/test/ObjC/DOMFloat64Array.h:
+        * bindings/scripts/test/ObjC/DOMTestActiveDOMObject.h:
+        * bindings/scripts/test/ObjC/DOMTestCallback.h:
+        * bindings/scripts/test/ObjC/DOMTestCustomNamedGetter.h:
+        * bindings/scripts/test/ObjC/DOMTestEventConstructor.h:
+        * bindings/scripts/test/ObjC/DOMTestEventTarget.h:
+        * bindings/scripts/test/ObjC/DOMTestException.h:
+        * bindings/scripts/test/ObjC/DOMTestGenerateIsReachable.h:
+        * bindings/scripts/test/ObjC/DOMTestInterface.h:
+        * bindings/scripts/test/ObjC/DOMTestMediaQueryListListener.h:
+        * bindings/scripts/test/ObjC/DOMTestNamedConstructor.h:
+        * bindings/scripts/test/ObjC/DOMTestNode.h:
+        * bindings/scripts/test/ObjC/DOMTestNondeterministic.h:
+        * bindings/scripts/test/ObjC/DOMTestObj.h:
+        * bindings/scripts/test/ObjC/DOMTestOverloadedConstructors.h:
+        * bindings/scripts/test/ObjC/DOMTestSerializedScriptValueInterface.h:
+        * bindings/scripts/test/ObjC/DOMTestTypedefs.h:
+        * bindings/scripts/test/ObjC/DOMattribute.h:
+        * bindings/scripts/test/ObjC/DOMreadonly.h:
+
+2015-02-10  Alex Christensen  <[email protected]>
+
         Stop using WebCore.exp.in on Mac and iOS.
         https://bugs.webkit.org/show_bug.cgi?id=141413
 

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMFloat64Array.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMFloat64Array.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMFloat64Array.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -31,7 +31,7 @@
 @class DOMFloat32Array;
 @class DOMInt32Array;
 
-@interface DOMFloat64Array : DOMArrayBufferView
+WEBCORE_EXPORT @interface DOMFloat64Array : DOMArrayBufferView
 - (DOMInt32Array *)foo:(DOMFloat32Array *)array;
 @end
 

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestActiveDOMObject.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestActiveDOMObject.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestActiveDOMObject.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -30,7 +30,7 @@
 @class NSString;
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestActiveDOMObject : DOMObject
+WEBCORE_EXPORT @interface DOMTestActiveDOMObject : DOMObject
 @property (readonly) int excitingAttr;
 
 - (void)excitingFunction:(DOMNode *)nextChild;

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestCallback.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestCallback.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestCallback.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -34,7 +34,7 @@
 @class NSString;
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestCallback : DOMObject
+WEBCORE_EXPORT @interface DOMTestCallback : DOMObject
 - (BOOL)callbackWithNoParam;
 - (BOOL)callbackWithArrayParam:(DOMFloat32Array *)arrayParam;
 - (BOOL)callbackWithSerializedScriptValueParam:(NSString *)srzParam strArg:(NSString *)strArg;

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestCustomNamedGetter.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestCustomNamedGetter.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestCustomNamedGetter.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -29,6 +29,6 @@
 @class NSString;
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestCustomNamedGetter : DOMObject
+WEBCORE_EXPORT @interface DOMTestCustomNamedGetter : DOMObject
 - (void)anotherFunction:(NSString *)str;
 @end

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestEventConstructor.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestEventConstructor.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestEventConstructor.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -29,7 +29,7 @@
 @class NSString;
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestEventConstructor : DOMObject
+WEBCORE_EXPORT @interface DOMTestEventConstructor : DOMObject
 @property (readonly, copy) NSString *attr1;
 @property (readonly, copy) NSString *attr2;
 @end

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestEventTarget.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestEventTarget.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestEventTarget.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -32,7 +32,7 @@
 @protocol DOMEventListener;
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestEventTarget : DOMObject
+WEBCORE_EXPORT @interface DOMTestEventTarget : DOMObject
 - (DOMNode *)item:(unsigned)index;
 - (void)addEventListener:(NSString *)type listener:(id <DOMEventListener>)listener useCapture:(BOOL)useCapture;
 - (void)removeEventListener:(NSString *)type listener:(id <DOMEventListener>)listener useCapture:(BOOL)useCapture;

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestException.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestException.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestException.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -29,6 +29,6 @@
 @class NSString;
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestException : DOMObject
+WEBCORE_EXPORT @interface DOMTestException : DOMObject
 @property (readonly, copy) NSString *name;
 @end

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestGenerateIsReachable.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestGenerateIsReachable.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestGenerateIsReachable.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -27,5 +27,5 @@
 #import <WebCore/DOMObject.h>
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestGenerateIsReachable : DOMObject
+WEBCORE_EXPORT @interface DOMTestGenerateIsReachable : DOMObject
 @end

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestInterface.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestInterface.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestInterface.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -35,7 +35,7 @@
 } WEBKIT_ENUM_AVAILABLE_MAC(TBD);
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestInterface : DOMObject
+WEBCORE_EXPORT @interface DOMTestInterface : DOMObject
 @property (readonly, copy) NSString *implementsStr1;
 @property (copy) NSString *implementsStr2;
 @property (copy) NSString *implementsStr3;

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestMediaQueryListListener.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestMediaQueryListListener.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestMediaQueryListListener.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -29,6 +29,6 @@
 @class DOMMediaQueryListListener;
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestMediaQueryListListener : DOMObject
+WEBCORE_EXPORT @interface DOMTestMediaQueryListListener : DOMObject
 - (void)method:(DOMMediaQueryListListener *)listener;
 @end

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestNamedConstructor.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestNamedConstructor.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestNamedConstructor.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -27,5 +27,5 @@
 #import <WebCore/DOMObject.h>
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestNamedConstructor : DOMObject
+WEBCORE_EXPORT @interface DOMTestNamedConstructor : DOMObject
 @end

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestNode.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestNode.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestNode.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -27,5 +27,5 @@
 #import <WebCore/DOMNode.h>
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestNode : DOMNode
+WEBCORE_EXPORT @interface DOMTestNode : DOMNode
 @end

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestNondeterministic.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestNondeterministic.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestNondeterministic.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -29,7 +29,7 @@
 @class NSString;
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestNondeterministic : DOMObject
+WEBCORE_EXPORT @interface DOMTestNondeterministic : DOMObject
 @property (readonly) int nondeterministicReadonlyAttr;
 @property (copy) NSString *nondeterministicWriteableAttr;
 @property (copy) NSString *nondeterministicExceptionAttr;

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -59,7 +59,7 @@
 } WEBKIT_ENUM_AVAILABLE_MAC(TBD);
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestObj : DOMObject
+WEBCORE_EXPORT @interface DOMTestObj : DOMObject
 @property (readonly) int readOnlyLongAttr;
 @property (readonly, copy) NSString *readOnlyStringAttr;
 @property (readonly, strong) DOMTestObj *readOnlyTestObjAttr;

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestOverloadedConstructors.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestOverloadedConstructors.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestOverloadedConstructors.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -27,5 +27,5 @@
 #import <WebCore/DOMObject.h>
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestOverloadedConstructors : DOMObject
+WEBCORE_EXPORT @interface DOMTestOverloadedConstructors : DOMObject
 @end

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestSerializedScriptValueInterface.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestSerializedScriptValueInterface.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestSerializedScriptValueInterface.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -29,7 +29,7 @@
 @class NSString;
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestSerializedScriptValueInterface : DOMObject
+WEBCORE_EXPORT @interface DOMTestSerializedScriptValueInterface : DOMObject
 @property (strong) NSString *value;
 @property (readonly, strong) NSString *readonlyValue;
 @property (strong) NSString *cachedValue;

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestTypedefs.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestTypedefs.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestTypedefs.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -30,7 +30,7 @@
 @class NSString;
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMTestTypedefs : DOMObject
+WEBCORE_EXPORT @interface DOMTestTypedefs : DOMObject
 @property unsigned long long unsignedLongLongAttr;
 @property (strong) NSString *immutableSerializedScriptValue;
 @property int attrWithGetterException;

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMattribute.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMattribute.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMattribute.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -29,6 +29,6 @@
 @class NSString;
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMattribute : DOMObject
+WEBCORE_EXPORT @interface DOMattribute : DOMObject
 @property (readonly, copy) NSString *readonly;
 @end

Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMreadonly.h (179902 => 179903)


--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMreadonly.h	2015-02-11 00:16:50 UTC (rev 179902)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMreadonly.h	2015-02-11 00:19:37 UTC (rev 179903)
@@ -27,5 +27,5 @@
 #import <WebCore/DOMObject.h>
 
 WEBKIT_CLASS_AVAILABLE_MAC(TBD)
-@interface DOMreadonly : DOMObject
+WEBCORE_EXPORT @interface DOMreadonly : DOMObject
 @end
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to