Title: [137707] trunk/Source/WebCore
Revision
137707
Author
[email protected]
Date
2012-12-13 20:38:20 -0800 (Thu, 13 Dec 2012)

Log Message

MediaPlayerPrivateAVFoundation::m_inbandTrackConfigurationPending is unused except when HAVE(AVFOUNDATION_TEXT_TRACK_SUPPORT)
https://bugs.webkit.org/show_bug.cgi?id=104987

Rubber stamped by Michael Saboff.

No change in behavior so no new tests.

* platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:
(WebCore::MediaPlayerPrivateAVFoundation::MediaPlayerPrivateAVFoundation):
* platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.h:
(MediaPlayerPrivateAVFoundation):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (137706 => 137707)


--- trunk/Source/WebCore/ChangeLog	2012-12-14 04:30:20 UTC (rev 137706)
+++ trunk/Source/WebCore/ChangeLog	2012-12-14 04:38:20 UTC (rev 137707)
@@ -1,3 +1,17 @@
+2012-12-13  Filip Pizlo  <[email protected]>
+
+        MediaPlayerPrivateAVFoundation::m_inbandTrackConfigurationPending is unused except when HAVE(AVFOUNDATION_TEXT_TRACK_SUPPORT)
+        https://bugs.webkit.org/show_bug.cgi?id=104987
+
+        Rubber stamped by Michael Saboff.
+
+        No change in behavior so no new tests.
+
+        * platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:
+        (WebCore::MediaPlayerPrivateAVFoundation::MediaPlayerPrivateAVFoundation):
+        * platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.h:
+        (MediaPlayerPrivateAVFoundation):
+
 2012-12-13  Kentaro Hara  <[email protected]>
 
         Unreviewed. Rebaselined run-bindings-tests results.

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp (137706 => 137707)


--- trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp	2012-12-14 04:30:20 UTC (rev 137706)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp	2012-12-14 04:38:20 UTC (rev 137707)
@@ -74,7 +74,9 @@
     , m_ignoreLoadStateChanges(false)
     , m_haveReportedFirstVideoFrame(false)
     , m_playWhenFramesAvailable(false)
+#if HAVE(AVFOUNDATION_TEXT_TRACK_SUPPORT)
     , m_inbandTrackConfigurationPending(false)
+#endif
 {
     LOG(Media, "MediaPlayerPrivateAVFoundation::MediaPlayerPrivateAVFoundation(%p)", this);
 }

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.h (137706 => 137707)


--- trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.h	2012-12-14 04:30:20 UTC (rev 137706)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.h	2012-12-14 04:38:20 UTC (rev 137707)
@@ -296,7 +296,9 @@
     bool m_ignoreLoadStateChanges;
     bool m_haveReportedFirstVideoFrame;
     bool m_playWhenFramesAvailable;
+#if HAVE(AVFOUNDATION_TEXT_TRACK_SUPPORT)
     bool m_inbandTrackConfigurationPending;
+#endif
 };
 
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to