Title: [145549] trunk/Source/WebCore
- Revision
- 145549
- Author
- [email protected]
- Date
- 2013-03-12 08:21:16 -0700 (Tue, 12 Mar 2013)
Log Message
[BlackBerry] MediaPlayerPrivate: fix call to MediaStreamDescriptor::label()
https://bugs.webkit.org/show_bug.cgi?id=112140
Patch by Alberto Garcia <[email protected]> on 2013-03-12
Reviewed by Rob Buis.
MediaStreamDescriptor::id() was renamed to MediaStreamDescriptor::label() in r139352.
* platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.cpp:
(WebCore::toWebMediaStreamDescriptor):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (145548 => 145549)
--- trunk/Source/WebCore/ChangeLog 2013-03-12 15:19:37 UTC (rev 145548)
+++ trunk/Source/WebCore/ChangeLog 2013-03-12 15:21:16 UTC (rev 145549)
@@ -1,3 +1,15 @@
+2013-03-12 Alberto Garcia <[email protected]>
+
+ [BlackBerry] MediaPlayerPrivate: fix call to MediaStreamDescriptor::label()
+ https://bugs.webkit.org/show_bug.cgi?id=112140
+
+ Reviewed by Rob Buis.
+
+ MediaStreamDescriptor::id() was renamed to MediaStreamDescriptor::label() in r139352.
+
+ * platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.cpp:
+ (WebCore::toWebMediaStreamDescriptor):
+
2013-03-12 Eugene Klyuchnikov <[email protected]>
Web Inspector: [REGRESSION] StepInto (F11) and StepOut (Shift-F11) shortcuts toggle Inspector window full-screen state
Modified: trunk/Source/WebCore/platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.cpp (145548 => 145549)
--- trunk/Source/WebCore/platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.cpp 2013-03-12 15:19:37 UTC (rev 145548)
+++ trunk/Source/WebCore/platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.cpp 2013-03-12 15:21:16 UTC (rev 145549)
@@ -798,7 +798,7 @@
for (size_t i = 0; i < d->numberOfVideoComponents(); i++)
videoSources.push_back(toWebMediaStreamSource(d->videoComponent(i)->source()));
- return WebMediaStreamDescriptor(d->label().utf8().data(), audioSources, videoSources);
+ return WebMediaStreamDescriptor(d->id().utf8().data(), audioSources, videoSources);
}
WebMediaStreamDescriptor MediaPlayerPrivate::lookupMediaStream(const BlackBerry::Platform::String& url)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes