Reviewed by Chris Fleizach.
* DumpRenderTree/ios/AccessibilityUIElementIOS.mm: Declare
-_accessibilityPath from the WebAccessibilityObjectWrapper
class.
(_CGPathEnumerationIteration): Remove unused CGPoint* variable.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@148328
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-04-12 David Kilzer <ddkilzer@apple.com>
+
+ 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 <jpfau@apple.com>
Unreviewed, remove an old email address for myself.
- (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]);
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"];