| 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 4074bca184e6d2f9abe7adac93bc069707a38043..0d906d5f0ad42ef39139e3651334cc15a9c6c611 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
|
|
|