Title: [112517] trunk/Source/WebKit/chromium
Revision
112517
Author
[email protected]
Date
2012-03-29 03:25:08 -0700 (Thu, 29 Mar 2012)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (112516 => 112517)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-03-29 10:17:19 UTC (rev 112516)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-03-29 10:25:08 UTC (rev 112517)
@@ -1,3 +1,13 @@
+2012-03-29  Tommy Widenflycht  <[email protected]>
+
+        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):
+
 2012-03-28  Kinuko Yasuda  <[email protected]>
 
         [chromium] Add isolated filesystem type and WebDragData::filesystem_id for drag-and-drop using File/DirectoryEntry.

Modified: trunk/Source/WebKit/chromium/public/platform/WebKitPlatformSupport.h (112516 => 112517)


--- trunk/Source/WebKit/chromium/public/platform/WebKitPlatformSupport.h	2012-03-29 10:17:19 UTC (rev 112516)
+++ trunk/Source/WebKit/chromium/public/platform/WebKitPlatformSupport.h	2012-03-29 10:25:08 UTC (rev 112517)
@@ -408,11 +408,21 @@
 
     // WebRTC ----------------------------------------------------------
 
+    // DEPRECATED
+    // Creates an WebPeerConnectionHandler for DeprecatedPeerConnection.
     // May return null if WebRTC functionality is not avaliable or out of resources.
     virtual WebPeerConnectionHandler* createPeerConnectionHandler(WebPeerConnectionHandlerClient*) { return 0; }
+
+    // Creates an WebPeerConnection00Handler for PeerConnection00.
+    // This is an highly experimental feature not yet in the WebRTC standard.
+    // May return null if WebRTC functionality is not avaliable or out of resources.
     virtual WebPeerConnection00Handler* createPeerConnection00Handler(WebPeerConnection00HandlerClient*) { return 0; }
+
+    // May return null if WebRTC functionality is not avaliable or out of resources.
     virtual WebMediaStreamCenter* createMediaStreamCenter(WebMediaStreamCenterClient*) { return 0; }
 
+    // WebWorker ----------------------------------------------------------
+
     virtual void didStartWorkerRunLoop(const WebWorkerRunLoop&) { }
     virtual void didStopWorkerRunLoop(const WebWorkerRunLoop&) { }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to