Changeset 110937 in webkit


Ignore:
Timestamp:
Mar 15, 2012 8:45:29 PM (12 years ago)
Author:
tommyw@google.com
Message:

MediaStream API (JSEP): Introducing MediaHints and IceOptions
https://bugs.webkit.org/show_bug.cgi?id=81207

Reviewed by Adam Barth.

Patch #4 in a series of patches to change the PeerConnection from ROAP to JSEP,
see bug 80589 for more information.
Introducing the platform MediaHints and IceOptions helper classes.

Not possible to test until the entire JSEP feature is commited.

  • GNUmakefile.list.am:
  • WebCore.gypi:
  • platform/mediastream/IceOptions.cpp: Added.

(WebCore):
(WebCore::IceOptions::create):

  • platform/mediastream/IceOptions.h: Added.

(WebCore):
(IceOptions):
(WebCore::IceOptions::~IceOptions):
(WebCore::IceOptions::useCandidates):
(WebCore::IceOptions::IceOptions):

  • platform/mediastream/MediaHints.cpp: Added.

(WebCore):
(WebCore::MediaHints::create):
(WebCore::MediaHints::audio):
(WebCore::MediaHints::video):

  • platform/mediastream/MediaHints.h: Added.

(WebCore):
(MediaHints):
(WebCore::MediaHints::~MediaHints):
(WebCore::MediaHints::MediaHints):

Location:
trunk/Source/WebCore
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r110935 r110937  
     12012-03-15  Tommy Widenflycht  <tommyw@google.com>
     2
     3        MediaStream API (JSEP): Introducing MediaHints and IceOptions
     4        https://bugs.webkit.org/show_bug.cgi?id=81207
     5
     6        Reviewed by Adam Barth.
     7
     8        Patch #4 in a series of patches to change the PeerConnection from ROAP to JSEP,
     9        see bug 80589 for more information.
     10        Introducing the platform MediaHints and IceOptions helper classes.
     11
     12        Not possible to test until the entire JSEP feature is commited.
     13
     14        * GNUmakefile.list.am:
     15        * WebCore.gypi:
     16        * platform/mediastream/IceOptions.cpp: Added.
     17        (WebCore):
     18        (WebCore::IceOptions::create):
     19        * platform/mediastream/IceOptions.h: Added.
     20        (WebCore):
     21        (IceOptions):
     22        (WebCore::IceOptions::~IceOptions):
     23        (WebCore::IceOptions::useCandidates):
     24        (WebCore::IceOptions::IceOptions):
     25        * platform/mediastream/MediaHints.cpp: Added.
     26        (WebCore):
     27        (WebCore::MediaHints::create):
     28        (WebCore::MediaHints::audio):
     29        (WebCore::MediaHints::video):
     30        * platform/mediastream/MediaHints.h: Added.
     31        (WebCore):
     32        (MediaHints):
     33        (WebCore::MediaHints::~MediaHints):
     34        (WebCore::MediaHints::MediaHints):
     35
    1362012-03-15  Shinya Kawanaka  <shinyak@chromium.org>
    237
  • trunk/Source/WebCore/GNUmakefile.list.am

    r110903 r110937  
    33313331        Source/WebCore/platform/mediastream/IceCandidateDescriptor.cpp \
    33323332        Source/WebCore/platform/mediastream/IceCandidateDescriptor.h \
     3333        Source/WebCore/platform/mediastream/IceOptions.cpp \
     3334        Source/WebCore/platform/mediastream/IceOptions.h \
     3335        Source/WebCore/platform/mediastream/MediaHints.cpp \
     3336        Source/WebCore/platform/mediastream/MediaHints.h \
    33333337        Source/WebCore/platform/mediastream/MediaStreamCenter.cpp \
    33343338        Source/WebCore/platform/mediastream/MediaStreamCenter.h \
  • trunk/Source/WebCore/WebCore.gypi

    r110921 r110937  
    421421            'platform/mediastream/IceCandidateDescriptor.cpp',
    422422            'platform/mediastream/IceCandidateDescriptor.h',
     423            'platform/mediastream/IceOptions.cpp',
     424            'platform/mediastream/IceOptions.h',
     425            'platform/mediastream/MediaHints.cpp',
     426            'platform/mediastream/MediaHints.h',
    423427            'platform/mediastream/MediaStreamCenter.cpp',
    424428            'platform/mediastream/MediaStreamCenter.h',
Note: See TracChangeset for help on using the changeset viewer.