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

Unified Diff: third_party/WebKit/Source/modules/mediastream/RTCIceCandidate.h

Issue 2007923003: Use Init dictionaries in RTCPeerConnection legacy methods. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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: third_party/WebKit/Source/modules/mediastream/RTCIceCandidate.h
diff --git a/third_party/WebKit/Source/modules/mediastream/RTCIceCandidate.h b/third_party/WebKit/Source/modules/mediastream/RTCIceCandidate.h
index e1229b5e10d8b4dfdd482fcdb9e8a67e1bd49eca..230d0bb33fabbf437ffbf8fdcee3c3800814fd25 100644
--- a/third_party/WebKit/Source/modules/mediastream/RTCIceCandidate.h
+++ b/third_party/WebKit/Source/modules/mediastream/RTCIceCandidate.h
@@ -39,13 +39,14 @@ namespace blink {
class RTCIceCandidateInit;
class ExceptionState;
+class ExecutionContext;
class ScriptState;
class ScriptValue;
class RTCIceCandidate final : public GarbageCollectedFinalized<RTCIceCandidate>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static RTCIceCandidate* create(const RTCIceCandidateInit&, ExceptionState&);
+ static RTCIceCandidate* create(ExecutionContext*, const RTCIceCandidateInit&, ExceptionState&);
static RTCIceCandidate* create(WebRTCICECandidate);
String candidate() const;
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | third_party/WebKit/Source/modules/mediastream/RTCIceCandidate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698