| 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 aa1d36a722bd2aacdcc0f7d14f4bae19166fd832..c59ef520505c894bb4fef213f5aca4448df35ee2 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptState.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptState.cpp
|
| @@ -66,27 +66,6 @@ void ScriptState::disposePerContextData()
|
| m_perContextData = nullptr;
|
| }
|
|
|
| -bool ScriptState::evalEnabled() const
|
| -{
|
| - v8::HandleScope handleScope(m_isolate);
|
| - return context()->IsCodeGenerationFromStringsAllowed();
|
| -}
|
| -
|
| -void ScriptState::setEvalEnabled(bool enabled)
|
| -{
|
| - v8::HandleScope handleScope(m_isolate);
|
| - return context()->AllowCodeGenerationFromStrings(enabled);
|
| -}
|
| -
|
| -ScriptValue ScriptState::getFromGlobalObject(const char* name)
|
| -{
|
| - v8::HandleScope handleScope(m_isolate);
|
| - v8::Local<v8::Value> v8Value;
|
| - if (!context()->Global()->Get(context(), v8AtomicString(isolate(), name)).ToLocal(&v8Value))
|
| - return ScriptValue();
|
| - return ScriptValue(this, v8Value);
|
| -}
|
| -
|
| ScriptValue ScriptState::getFromExtrasExports(const char* name)
|
| {
|
| v8::HandleScope handleScope(m_isolate);
|
|
|