| Index: third_party/WebKit/Source/core/mojo/MojoHandle.cpp
|
| diff --git a/third_party/WebKit/Source/core/mojo/MojoHandle.cpp b/third_party/WebKit/Source/core/mojo/MojoHandle.cpp
|
| index 14ac6bd4e85d7badb47545d9c7fce5aebe66143b..aed10b752f2b28d6ea0ae42eb414e7a72c72f72b 100644
|
| --- a/third_party/WebKit/Source/core/mojo/MojoHandle.cpp
|
| +++ b/third_party/WebKit/Source/core/mojo/MojoHandle.cpp
|
| @@ -8,6 +8,7 @@
|
| #include "bindings/core/v8/ScriptState.h"
|
| #include "core/dom/DOMArrayBuffer.h"
|
| #include "core/dom/DOMArrayBufferView.h"
|
| +#include "core/dom/ExecutionContext.h"
|
| #include "core/mojo/MojoCreateSharedBufferResult.h"
|
| #include "core/mojo/MojoDiscardDataOptions.h"
|
| #include "core/mojo/MojoDuplicateBufferHandleOptions.h"
|
| @@ -42,7 +43,7 @@ MojoWatcher* MojoHandle::watch(ScriptState* script_state,
|
| const MojoHandleSignals& signals,
|
| MojoWatchCallback* callback) {
|
| return MojoWatcher::Create(handle_.get(), signals, callback,
|
| - script_state->GetExecutionContext());
|
| + ExecutionContext::From(script_state));
|
| }
|
|
|
| MojoResult MojoHandle::writeMessage(
|
|
|