Changeset 154615 in webkit
- Timestamp:
- Aug 26, 2013, 10:51:46 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r154614 r154615 1 2013-08-26 Brent Fulgham <bfulgham@apple.com> 2 3 [Windows] Unreviewed build fix. 4 5 * rendering/RenderMediaControls.cpp: Remove references to QuickTime controls 6 that are no longer part of WKSI. 7 (wkHitTestMediaUIPart): 8 (wkMeasureMediaUIPart): 9 (wkDrawMediaUIPart): 10 (wkDrawMediaSliderTrack): 11 1 12 2013-08-26 Gurpreet Kaur <gur.trio@gmail.com> 2 13 -
trunk/Source/WebCore/rendering/RenderMediaControls.cpp
r154205 r154615 1 1 /* 2 * Copyright (C) 2009 Apple Inc. All Rights Reserved.2 * Copyright (C) 2009, 2013 Apple Inc. All Rights Reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 46 46 inline bool wkHitTestMediaUIPart(int part, const CGRect& bounds, const CGPoint& point) 47 47 { 48 #if HAVE(AVCF_LEGIBLE_OUTPUT)49 48 WKHitTestMediaUIPart(part, bounds, point); 50 #else51 WKHitTestMediaUIPart(part, WKMediaControllerThemeQuickTime, bounds, point);52 #endif53 49 } 54 50 55 51 inline void wkMeasureMediaUIPart(int part, CGRect* bounds, CGSize* naturalSize) 56 52 { 57 #if HAVE(AVCF_LEGIBLE_OUTPUT)58 53 WKMeasureMediaUIPart(part, bounds, naturalSize); 59 #else60 WKMeasureMediaUIPart(part, WKMediaControllerThemeQuickTime, bounds, naturalSize);61 #endif62 54 } 63 55 64 56 inline void wkDrawMediaUIPart(int part, CGContextRef context, const CGRect& rect, unsigned state) 65 57 { 66 #if HAVE(AVCF_LEGIBLE_OUTPUT)67 58 WKDrawMediaUIPart(part, context, rect, state); 68 #else69 WKDrawMediaUIPart(part, WKMediaControllerThemeQuickTime, context, rect, state);70 #endif71 59 } 72 60 73 61 inline void wkDrawMediaSliderTrack(CGContextRef context, const CGRect& rect, float timeLoaded, float currentTime, float duration, unsigned state) 74 62 { 75 #if HAVE(AVCF_LEGIBLE_OUTPUT)76 63 WKDrawMediaSliderTrack(context, rect, timeLoaded, currentTime, duration, state); 77 #else78 WKDrawMediaSliderTrack(WKMediaControllerThemeQuickTime, context, rect, timeLoaded, currentTime, duration, state);79 #endif80 64 } 81 65
Note:
See TracChangeset
for help on using the changeset viewer.