| 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;
|
|
|