diff options
Diffstat (limited to 'Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.h')
-rw-r--r-- | Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.h b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.h index e57a29cd7..d3e685b2d 100644 --- a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.h +++ b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.h @@ -31,7 +31,7 @@ #include <wtf/PassRefPtr.h> #include <wtf/Platform.h> -#if PLATFORM(MAC) +#if PLATFORM(COCOA) #include <wtf/RetainPtr.h> typedef CFTypeRef PlatformTextMarkerRange; #else @@ -57,14 +57,14 @@ private: AccessibilityTextMarkerRange(PlatformTextMarkerRange); AccessibilityTextMarkerRange(const AccessibilityTextMarkerRange&); -#if PLATFORM(MAC) +#if PLATFORM(COCOA) RetainPtr<PlatformTextMarkerRange> m_textMarkerRange; #else PlatformTextMarkerRange m_textMarkerRange; #endif }; -#if !PLATFORM(MAC) +#if !PLATFORM(COCOA) inline bool AccessibilityTextMarkerRange::isEqual(AccessibilityTextMarkerRange*) { return false; } #endif |