Changeset 145549 in webkit


Ignore:
Timestamp:
Mar 12, 2013 8:21:16 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] MediaPlayerPrivate: fix call to MediaStreamDescriptor::label()
https://bugs.webkit.org/show_bug.cgi?id=112140

Patch by Alberto Garcia <agarcia@igalia.com> on 2013-03-12
Reviewed by Rob Buis.

MediaStreamDescriptor::id() was renamed to MediaStreamDescriptor::label() in r139352.

  • platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.cpp:

(WebCore::toWebMediaStreamDescriptor):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r145548 r145549  
     12013-03-12  Alberto Garcia  <agarcia@igalia.com>
     2
     3        [BlackBerry] MediaPlayerPrivate: fix call to MediaStreamDescriptor::label()
     4        https://bugs.webkit.org/show_bug.cgi?id=112140
     5
     6        Reviewed by Rob Buis.
     7
     8        MediaStreamDescriptor::id() was renamed to MediaStreamDescriptor::label() in r139352.
     9
     10        * platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.cpp:
     11        (WebCore::toWebMediaStreamDescriptor):
     12
    1132013-03-12  Eugene Klyuchnikov  <eustas@chromium.org>
    214
  • trunk/Source/WebCore/platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.cpp

    r144931 r145549  
    799799        videoSources.push_back(toWebMediaStreamSource(d->videoComponent(i)->source()));
    800800
    801     return WebMediaStreamDescriptor(d->label().utf8().data(), audioSources, videoSources);
     801    return WebMediaStreamDescriptor(d->id().utf8().data(), audioSources, videoSources);
    802802}
    803803
Note: See TracChangeset for help on using the changeset viewer.