Changeset 162927 in webkit
- Timestamp:
- Jan 28, 2014, 2:02:21 AM (12 years ago)
- Location:
- tags/Safari-538.14/Source/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/Safari-538.14/Source/WebCore/ChangeLog
r162926 r162927 1 1 2014-01-28 Babak Shafiei <bshafiei@apple.com> 2 2 3 Merge r162885 4 5 2014-01-27 Andy Estes <aestes@apple.com> 6 7 Update bindings test expectations after r162872 8 9 * bindings/scripts/test/ObjC/DOMTestInterface.h: 10 * bindings/scripts/test/ObjC/DOMTestObj.h: 11 12 2014-01-28 Babak Shafiei <bshafiei@apple.com> 13 3 14 Merge r162881 4 15 5 16 2014-01-27 Andy Estes <aestes@apple.com> 6 17 -
tags/Safari-538.14/Source/WebCore/bindings/scripts/test/ObjC/DOMTestInterface.h
r161406 r162927 32 32 33 33 enum { 34 #if ENABLE(Condition22) || ENABLE(Condition23)35 DOM_IMPLEMENTSCONSTANT1 = 1,36 #endif37 #if ENABLE(Condition22) || ENABLE(Condition23)38 DOM_IMPLEMENTSCONSTANT2 = 2,39 #endif40 #if ENABLE(Condition11) || ENABLE(Condition12)41 DOM_SUPPLEMENTALCONSTANT1 = 1,42 #endif43 #if ENABLE(Condition11) || ENABLE(Condition12)44 DOM_SUPPLEMENTALCONSTANT2 = 245 #endif46 34 47 35 } WEBKIT_ENUM_AVAILABLE_MAC(TBD); … … 57 45 @property (copy) NSString *supplementalStr3; 58 46 @property (strong) DOMNode *supplementalNode; 59 60 #if ENABLE(Condition22) || ENABLE(Condition23)61 - (void)implementsMethod1;62 #endif63 #if ENABLE(Condition22) || ENABLE(Condition23)64 - (DOMTestObj *)implementsMethod2:(NSString *)strArg objArg:(DOMTestObj *)objArg;65 #endif66 #if ENABLE(Condition22) || ENABLE(Condition23)67 - (void)implementsMethod3;68 #endif69 #if ENABLE(Condition22) || ENABLE(Condition23)70 - (void)implementsMethod4;71 #endif72 #if ENABLE(Condition11) || ENABLE(Condition12)73 - (void)supplementalMethod1;74 #endif75 #if ENABLE(Condition11) || ENABLE(Condition12)76 - (DOMTestObj *)supplementalMethod2:(NSString *)strArg objArg:(DOMTestObj *)objArg;77 #endif78 #if ENABLE(Condition11) || ENABLE(Condition12)79 - (void)supplementalMethod3;80 #endif81 #if ENABLE(Condition11) || ENABLE(Condition12)82 - (void)supplementalMethod4;83 #endif84 47 @end -
tags/Safari-538.14/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.h
r161406 r162927 45 45 46 46 enum { 47 #if ENABLE(Condition1)48 DOM_CONDITIONAL_CONST = 0,49 #endif50 47 DOM_CONST_VALUE_0 = 0, 51 48 DOM_CONST_VALUE_1 = 1, … … 160 157 - (void)methodWithOptionalStringIsUndefined:(NSString *)str; 161 158 - (void)methodWithOptionalStringIsNullString:(NSString *)str; 162 #if ENABLE(Condition1)163 - (NSString *)conditionalMethod1;164 #endif165 #if ENABLE(Condition1) && ENABLE(Condition2)166 - (void)conditionalMethod2;167 #endif168 #if ENABLE(Condition1) || ENABLE(Condition2)169 - (void)conditionalMethod3;170 #endif171 159 - (void)classMethod; 172 160 - (int)classMethodWithOptional:(int)arg; 173 161 - (void)classMethod2:(int)arg; 174 #if ENABLE(Condition1)175 - (void)overloadedMethod1:(int)arg;176 #endif177 #if ENABLE(Condition1)178 - (void)overloadedMethod1:(NSString *)type;179 #endif180 162 - (DOMSVGDocument *)getSVGDocument; 181 163 - (void)convert1:(DOMTestNode *)value;
Note:
See TracChangeset
for help on using the changeset viewer.