Title: [148328] trunk/Tools
Revision
148328
Author
[email protected]
Date
2013-04-12 18:02:54 -0700 (Fri, 12 Apr 2013)

Log Message

BUILD FIX: Make AccessibilityUIElementIOS.mm build on iOS

Reviewed by Chris Fleizach.

* DumpRenderTree/ios/AccessibilityUIElementIOS.mm: Declare
-_accessibilityPath from the WebAccessibilityObjectWrapper
class.
(_CGPathEnumerationIteration): Remove unused CGPoint* variable.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (148327 => 148328)


--- trunk/Tools/ChangeLog	2013-04-13 00:55:49 UTC (rev 148327)
+++ trunk/Tools/ChangeLog	2013-04-13 01:02:54 UTC (rev 148328)
@@ -1,3 +1,14 @@
+2013-04-12  David Kilzer  <[email protected]>
+
+        BUILD FIX: Make AccessibilityUIElementIOS.mm build on iOS
+
+        Reviewed by Chris Fleizach.
+
+        * DumpRenderTree/ios/AccessibilityUIElementIOS.mm: Declare
+        -_accessibilityPath from the WebAccessibilityObjectWrapper
+        class.
+        (_CGPathEnumerationIteration): Remove unused CGPoint* variable.
+
 2013-04-12  Jeffrey Pfau  <[email protected]>
 
         Unreviewed, remove an old email address for myself.

Modified: trunk/Tools/DumpRenderTree/ios/AccessibilityUIElementIOS.mm (148327 => 148328)


--- trunk/Tools/DumpRenderTree/ios/AccessibilityUIElementIOS.mm	2013-04-13 00:55:49 UTC (rev 148327)
+++ trunk/Tools/DumpRenderTree/ios/AccessibilityUIElementIOS.mm	2013-04-13 01:02:54 UTC (rev 148328)
@@ -79,6 +79,10 @@
 - (void)accessibilitySetPostedNotificationCallback:(AXPostedNotificationCallback)function withContext:(void*)context;
 @end
 
+@interface NSObject (WebAccessibilityObjectWrapperPrivate)
+- (CGPathRef)_accessibilityPath;
+@end
+
 static JSStringRef concatenateAttributeAndValue(NSString* attribute, NSString* value)
 {
     Vector<UniChar> buffer([attribute length]);
@@ -344,7 +348,6 @@
 static void _CGPathEnumerationIteration(void *info, const CGPathElement *element)
 {
     NSMutableString *result = (NSMutableString *)info;
-    CGPoint* points = element->points;
     switch (element->type) {
     case kCGPathElementMoveToPoint:
         [result appendString:@"\tMove to point\n"];
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to