Index: third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.h |
diff --git a/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.h b/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.h |
index 5680f178daa6dfd33da8a30781f91eaf2cfff764..f57edb2a25cc46e5045fd967fe41a71a409252d1 100644 |
--- a/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.h |
+++ b/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.h |
@@ -35,6 +35,7 @@ |
#include "bindings/core/v8/ScriptPromise.h" |
#include "core/dom/ActiveDOMObject.h" |
#include "modules/EventTargetModules.h" |
+#include "modules/crypto/NormalizeAlgorithm.h" |
#include "modules/mediastream/MediaStream.h" |
#include "modules/mediastream/RTCIceCandidate.h" |
#include "platform/AsyncMethodRunner.h" |
@@ -81,7 +82,9 @@ public: |
void updateIce(const Dictionary& rtcConfiguration, const Dictionary& mediaConstraints, ExceptionState&); |
- static ScriptPromise generateCertificate(ScriptState*, const Dictionary& keygenAlgorithm, ExceptionState&); |
+ // Certificate Management |
hta - Chromium
2015/10/23 06:55:00
Nit: Don't uppercase the second word in a name. It
hbos_chromium
2015/10/23 09:59:05
Done.
|
+ // http://w3c.github.io/webrtc-pc/#sec.cert-mgmt |
+ static ScriptPromise generateCertificate(ScriptState*, const AlgorithmIdentifier& keygenAlgorithm, ExceptionState&); |
// DEPRECATED |
void addIceCandidate(RTCIceCandidate*, ExceptionState&); |