Changeset 112517 in webkit


Ignore:
Timestamp:
Mar 29, 2012 3:25:08 AM (12 years ago)
Author:
tommyw@google.com
Message:

MediaStream API: Adding better comments for the WebRTC methods in WebKitPlatformSupport.h
https://bugs.webkit.org/show_bug.cgi?id=82588

Reviewed by Adam Barth.

  • public/platform/WebKitPlatformSupport.h:

(WebKitPlatformSupport):

Location:
trunk/Source/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r112510 r112517  
     12012-03-29  Tommy Widenflycht  <tommyw@google.com>
     2
     3        MediaStream API: Adding better comments for the WebRTC methods in WebKitPlatformSupport.h
     4        https://bugs.webkit.org/show_bug.cgi?id=82588
     5
     6        Reviewed by Adam Barth.
     7
     8        * public/platform/WebKitPlatformSupport.h:
     9        (WebKitPlatformSupport):
     10
    1112012-03-28  Kinuko Yasuda  <kinuko@chromium.org>
    212
  • trunk/Source/WebKit/chromium/public/platform/WebKitPlatformSupport.h

    r112421 r112517  
    409409    // WebRTC ----------------------------------------------------------
    410410
     411    // DEPRECATED
     412    // Creates an WebPeerConnectionHandler for DeprecatedPeerConnection.
    411413    // May return null if WebRTC functionality is not avaliable or out of resources.
    412414    virtual WebPeerConnectionHandler* createPeerConnectionHandler(WebPeerConnectionHandlerClient*) { return 0; }
     415
     416    // Creates an WebPeerConnection00Handler for PeerConnection00.
     417    // This is an highly experimental feature not yet in the WebRTC standard.
     418    // May return null if WebRTC functionality is not avaliable or out of resources.
    413419    virtual WebPeerConnection00Handler* createPeerConnection00Handler(WebPeerConnection00HandlerClient*) { return 0; }
     420
     421    // May return null if WebRTC functionality is not avaliable or out of resources.
    414422    virtual WebMediaStreamCenter* createMediaStreamCenter(WebMediaStreamCenterClient*) { return 0; }
     423
     424    // WebWorker ----------------------------------------------------------
    415425
    416426    virtual void didStartWorkerRunLoop(const WebWorkerRunLoop&) { }
Note: See TracChangeset for help on using the changeset viewer.