| Index: third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.cpp
|
| diff --git a/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.cpp b/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.cpp
|
| index e10c8728030a6cc212e0b962035340295242c4c6..c7195f8cb5025f41cdb5ea583cb91ceb66ad2435 100644
|
| --- a/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.cpp
|
| +++ b/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.cpp
|
| @@ -49,7 +49,6 @@ HTMLMediaElementRemotePlayback& HTMLMediaElementRemotePlayback::from(
|
|
|
| // static
|
| RemotePlayback* HTMLMediaElementRemotePlayback::remote(
|
| - ScriptState* scriptState,
|
| HTMLMediaElement& element) {
|
| HTMLMediaElementRemotePlayback& self =
|
| HTMLMediaElementRemotePlayback::from(element);
|
| @@ -58,7 +57,7 @@ RemotePlayback* HTMLMediaElementRemotePlayback::remote(
|
| return nullptr;
|
|
|
| if (!self.m_remote)
|
| - self.m_remote = RemotePlayback::create(scriptState, element);
|
| + self.m_remote = RemotePlayback::create(element);
|
|
|
| return self.m_remote;
|
| }
|
|
|