Title: [88330] trunk/Source/WebCore
- Revision
- 88330
- Author
- [email protected]
- Date
- 2011-06-08 00:20:23 -0700 (Wed, 08 Jun 2011)
Log Message
Fix the build.
* platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:
(WebCore::MediaPlayerPrivateAVFoundation::timeChanged):
(WebCore::MediaPlayerPrivateAVFoundation::seekCompleted):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (88329 => 88330)
--- trunk/Source/WebCore/ChangeLog 2011-06-08 06:18:49 UTC (rev 88329)
+++ trunk/Source/WebCore/ChangeLog 2011-06-08 07:20:23 UTC (rev 88330)
@@ -1,3 +1,11 @@
+2011-06-08 Mark Rowe <[email protected]>
+
+ Fix the build.
+
+ * platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:
+ (WebCore::MediaPlayerPrivateAVFoundation::timeChanged):
+ (WebCore::MediaPlayerPrivateAVFoundation::seekCompleted):
+
2011-06-07 Keishi Hattori <[email protected]>
Reviewed by Kent Tamura.
Modified: trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp (88329 => 88330)
--- trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp 2011-06-08 06:18:49 UTC (rev 88329)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp 2011-06-08 07:20:23 UTC (rev 88330)
@@ -551,11 +551,13 @@
void MediaPlayerPrivateAVFoundation::timeChanged(double time)
{
LOG(Media, "MediaPlayerPrivateAVFoundation::timeChanged(%p) - time = %f", this, time);
+ UNUSED_PARAM(time);
}
void MediaPlayerPrivateAVFoundation::seekCompleted(bool finished)
{
LOG(Media, "MediaPlayerPrivateAVFoundation::seekCompleted(%p) - finished = %d", this, finished);
+ UNUSED_PARAM(finished);
m_seekTo = invalidTime();
updateStates();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes