Changeset 182255 in webkit
- Timestamp:
- Apr 1, 2015, 2:26:30 PM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r182250 r182255 1 2015-04-01 Eric Carlson <eric.carlson@apple.com> 2 3 Another attempt to fixi the iOS build after r182240. 4 5 Reviewed by Dean Jackson. 6 7 * platform/graphics/MediaPlaybackTarget.h: 8 (WebCore::MediaPlaybackTarget::hasActiveRoute): 9 1 10 2015-04-01 Eric Carlson <eric.carlson@apple.com> 2 11 -
trunk/Source/WebCore/platform/graphics/MediaPlaybackTarget.h
r182250 r182255 31 31 #include <wtf/RetainPtr.h> 32 32 33 #if PLATFORM(COCOA) 33 34 OBJC_CLASS NSKeyedArchiver; 34 35 OBJC_CLASS NSKeyedUnarchiver; 35 36 OBJC_CLASS AVOutputContext; 37 #endif 36 38 37 39 namespace WebCore { … … 41 43 virtual ~MediaPlaybackTarget() { } 42 44 43 #if PLATFORM( MAC)45 #if PLATFORM(COCOA) 44 46 WEBCORE_EXPORT MediaPlaybackTarget(AVOutputContext *context = nil) { m_devicePickerContext = context; } 45 47 … … 49 51 void setDevicePickerContext(AVOutputContext *context) { m_devicePickerContext = context; } 50 52 AVOutputContext *devicePickerContext() const { return m_devicePickerContext.get(); } 53 54 #if PLATFORM(IOS) 55 bool hasActiveRoute() const { return false; } 56 #else 51 57 bool hasActiveRoute() const; 58 #endif 59 52 60 #else 53 61 void setDevicePickerContext(AVOutputContext *) { } … … 57 65 58 66 protected: 59 #if PLATFORM( MAC)67 #if PLATFORM(COCOA) 60 68 RetainPtr<AVOutputContext> m_devicePickerContext; 61 69 #endif
Note:
See TracChangeset
for help on using the changeset viewer.