Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(765)

Unified Diff: public/platform/Platform.h

Issue 1311853005: RTCCertificate and RTCPeerConnection.generateCertificate added to JavaScript (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Merge with master Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: public/platform/Platform.h
diff --git a/public/platform/Platform.h b/public/platform/Platform.h
index 7d6cb901398636564bbfc20e0ec56b37761aafc2..237630243c3bd18048a9c0ca08f3b904ecea135f 100644
--- a/public/platform/Platform.h
+++ b/public/platform/Platform.h
@@ -96,6 +96,7 @@ class WebPrescientNetworking;
class WebProcessMemoryDump;
class WebPublicSuffixList;
class WebPushProvider;
+class WebRTCCertificateGenerator;
class WebRTCPeerConnectionHandler;
class WebRTCPeerConnectionHandlerClient;
class WebSandboxSupport;
@@ -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 ----------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698