| Index: third_party/WebKit/public/platform/Platform.h
|
| diff --git a/third_party/WebKit/public/platform/Platform.h b/third_party/WebKit/public/platform/Platform.h
|
| index cbcc89536413c32f7b4dc3adc8bb16617a7b2be1..9a510986a4def0b499533f6b873f8c8ee10367bb 100644
|
| --- a/third_party/WebKit/public/platform/Platform.h
|
| +++ b/third_party/WebKit/public/platform/Platform.h
|
| @@ -95,6 +95,7 @@ class WebPrescientNetworking;
|
| class WebProcessMemoryDump;
|
| class WebPublicSuffixList;
|
| class WebPushProvider;
|
| +class WebRTCCertificateGenerator;
|
| class WebRTCPeerConnectionHandler;
|
| class WebRTCPeerConnectionHandlerClient;
|
| class WebSandboxSupport;
|
| @@ -625,7 +626,7 @@ public:
|
| // WebRTC ----------------------------------------------------------
|
|
|
| // Creates an WebRTCPeerConnectionHandler for RTCPeerConnection.
|
| - // May return null if WebRTC functionality is not avaliable or out of resources.
|
| + // May return null if WebRTC functionality is not avaliable or if it's out of resources.
|
| virtual WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler(WebRTCPeerConnectionHandlerClient*) { return nullptr; }
|
|
|
| // Creates an WebMediaRecorderHandler to record MediaStreams.
|
| @@ -633,6 +634,9 @@ public:
|
| virtual WebMediaRecorderHandler* createMediaRecorderHandler() { return nullptr; }
|
|
|
| // May return null if WebRTC functionality is not avaliable or out of resources.
|
| + virtual WebRTCCertificateGenerator* createRTCCertificateGenerator() { return nullptr; }
|
| +
|
| + // May return null if WebRTC functionality is not avaliable or out of resources.
|
| virtual WebMediaStreamCenter* createMediaStreamCenter(WebMediaStreamCenterClient*) { return nullptr; }
|
|
|
| // WebWorker ----------------------------------------------------------
|
|
|