Title: [154615] trunk/Source/WebCore
Revision
154615
Author
[email protected]
Date
2013-08-26 10:51:46 -0700 (Mon, 26 Aug 2013)

Log Message

[Windows] Unreviewed build fix.

* rendering/RenderMediaControls.cpp: Remove references to QuickTime controls
that are no longer part of WKSI.
(wkHitTestMediaUIPart): 
(wkMeasureMediaUIPart):
(wkDrawMediaUIPart):
(wkDrawMediaSliderTrack):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (154614 => 154615)


--- trunk/Source/WebCore/ChangeLog	2013-08-26 17:48:49 UTC (rev 154614)
+++ trunk/Source/WebCore/ChangeLog	2013-08-26 17:51:46 UTC (rev 154615)
@@ -1,3 +1,14 @@
+2013-08-26  Brent Fulgham  <[email protected]>
+
+        [Windows] Unreviewed build fix.
+
+        * rendering/RenderMediaControls.cpp: Remove references to QuickTime controls
+        that are no longer part of WKSI.
+        (wkHitTestMediaUIPart): 
+        (wkMeasureMediaUIPart):
+        (wkDrawMediaUIPart):
+        (wkDrawMediaSliderTrack):
+
 2013-08-26  Gurpreet Kaur  <[email protected]>
 
         <https://webkit.org/b/106133> document.body.scrollTop & document.documentElement.scrollTop differ cross-browser

Modified: trunk/Source/WebCore/rendering/RenderMediaControls.cpp (154614 => 154615)


--- trunk/Source/WebCore/rendering/RenderMediaControls.cpp	2013-08-26 17:48:49 UTC (rev 154614)
+++ trunk/Source/WebCore/rendering/RenderMediaControls.cpp	2013-08-26 17:51:46 UTC (rev 154615)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2009 Apple Inc. All Rights Reserved.
+ * Copyright (C) 2009, 2013 Apple Inc. All Rights Reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -45,38 +45,22 @@
 // FIXME: Is this necessary anymore?
 inline bool wkHitTestMediaUIPart(int part, const CGRect& bounds, const CGPoint& point)
 {
-#if HAVE(AVCF_LEGIBLE_OUTPUT)
     WKHitTestMediaUIPart(part, bounds, point);
-#else
-    WKHitTestMediaUIPart(part, WKMediaControllerThemeQuickTime, bounds, point);
-#endif
 }
 
 inline void wkMeasureMediaUIPart(int part, CGRect* bounds, CGSize* naturalSize)
 {
-#if HAVE(AVCF_LEGIBLE_OUTPUT)
     WKMeasureMediaUIPart(part, bounds, naturalSize);
-#else
-    WKMeasureMediaUIPart(part, WKMediaControllerThemeQuickTime, bounds, naturalSize);
-#endif
 }
 
 inline void wkDrawMediaUIPart(int part, CGContextRef context, const CGRect& rect, unsigned state)
 {
-#if HAVE(AVCF_LEGIBLE_OUTPUT)
     WKDrawMediaUIPart(part, context, rect, state);
-#else
-    WKDrawMediaUIPart(part, WKMediaControllerThemeQuickTime, context, rect, state);
-#endif
 }
 
 inline void wkDrawMediaSliderTrack(CGContextRef context, const CGRect& rect, float timeLoaded, float currentTime, float duration, unsigned state)
 {
-#if HAVE(AVCF_LEGIBLE_OUTPUT)
     WKDrawMediaSliderTrack(context, rect, timeLoaded, currentTime, duration, state);
-#else
-    WKDrawMediaSliderTrack(WKMediaControllerThemeQuickTime, context, rect, timeLoaded, currentTime, duration, state);
-#endif
 }
 
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to