| Index: third_party/WebKit/Source/bindings/core/v8/ScriptState.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptState.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptState.cpp
|
| index d8151fccc83f9bdded4b16785a3b7f4975bd8646..25632335ca9d8c9ace70fc174f3e07a5ad0e9baa 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptState.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptState.cpp
|
| @@ -53,15 +53,4 @@ void ScriptState::DisposePerContextData() {
|
| per_context_data_ = nullptr;
|
| }
|
|
|
| -ScriptValue ScriptState::GetFromExtrasExports(const char* name) {
|
| - v8::HandleScope handle_scope(isolate_);
|
| - v8::Local<v8::Value> v8_value;
|
| - if (!GetContext()
|
| - ->GetExtrasBindingObject()
|
| - ->Get(GetContext(), V8AtomicString(GetIsolate(), name))
|
| - .ToLocal(&v8_value))
|
| - return ScriptValue();
|
| - return ScriptValue(this, v8_value);
|
| -}
|
| -
|
| } // namespace blink
|
|
|