Title: [182250] trunk/Source/WebCore
Revision
182250
Author
[email protected]
Date
2015-04-01 12:49:47 -0700 (Wed, 01 Apr 2015)

Log Message

Fix the iOS build after r182240.

* platform/graphics/MediaPlaybackTarget.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (182249 => 182250)


--- trunk/Source/WebCore/ChangeLog	2015-04-01 19:33:56 UTC (rev 182249)
+++ trunk/Source/WebCore/ChangeLog	2015-04-01 19:49:47 UTC (rev 182250)
@@ -1,3 +1,9 @@
+2015-04-01  Eric Carlson  <[email protected]>
+
+        Fix the iOS build after r182240.
+
+        * platform/graphics/MediaPlaybackTarget.h:
+
 2015-04-01  Yoav Weiss  <[email protected]>
 
         Async loading of image resources

Modified: trunk/Source/WebCore/platform/graphics/MediaPlaybackTarget.h (182249 => 182250)


--- trunk/Source/WebCore/platform/graphics/MediaPlaybackTarget.h	2015-04-01 19:33:56 UTC (rev 182249)
+++ trunk/Source/WebCore/platform/graphics/MediaPlaybackTarget.h	2015-04-01 19:49:47 UTC (rev 182250)
@@ -30,11 +30,9 @@
 
 #include <wtf/RetainPtr.h>
 
-#if PLATFORM(COCOA)
 OBJC_CLASS NSKeyedArchiver;
 OBJC_CLASS NSKeyedUnarchiver;
 OBJC_CLASS AVOutputContext;
-#endif
 
 namespace WebCore {
 
@@ -42,7 +40,7 @@
 public:
     virtual ~MediaPlaybackTarget() { }
 
-#if PLATFORM(COCOA)
+#if PLATFORM(MAC)
     WEBCORE_EXPORT MediaPlaybackTarget(AVOutputContext *context = nil) { m_devicePickerContext = context; }
 
     WEBCORE_EXPORT void encode(NSKeyedArchiver *) const;
@@ -58,7 +56,7 @@
 #endif
 
 protected:
-#if PLATFORM(COCOA)
+#if PLATFORM(MAC)
     RetainPtr<AVOutputContext> m_devicePickerContext;
 #endif
 };
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to