Changeset 116675 in webkit


Ignore:
Timestamp:
May 10, 2012 12:17:21 PM (12 years ago)
Author:
tommyw@google.com
Message:

MediaStream API: Fix MediaHints parsing
https://bugs.webkit.org/show_bug.cgi?id=86098

Reviewed by Adam Barth.

Not currently testable. Working on a series of patches that will fix that.

  • Modules/mediastream/PeerConnection00.cpp:

(WebCore::PeerConnection00::createMediaHints):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r116674 r116675  
     12012-05-10  Tommy Widenflycht  <tommyw@google.com>
     2
     3        MediaStream API: Fix MediaHints parsing
     4        https://bugs.webkit.org/show_bug.cgi?id=86098
     5
     6        Reviewed by Adam Barth.
     7
     8        Not currently testable. Working on a series of patches that will fix that.
     9
     10        * Modules/mediastream/PeerConnection00.cpp:
     11        (WebCore::PeerConnection00::createMediaHints):
     12
    1132012-05-10  Tommy Widenflycht  <tommyw@google.com>
    214
  • trunk/Source/WebCore/Modules/mediastream/PeerConnection00.cpp

    r116127 r116675  
    9797    bool video = hasLocalVideoTrack();
    9898    dictionary.get("has_audio", audio);
    99     dictionary.get("has_video", audio);
     99    dictionary.get("has_video", video);
    100100    return MediaHints::create(audio, video);
    101101}
Note: See TracChangeset for help on using the changeset viewer.