| Index: Source/core/inspector/InjectedScriptModule.cpp
|
| diff --git a/Source/core/inspector/InjectedScriptModule.cpp b/Source/core/inspector/InjectedScriptModule.cpp
|
| index e888116222bf93eb1ac363a711e32269a7caa890..53410d9e1e4c2e69fbcadcabf9b318054ac4ac0e 100644
|
| --- a/Source/core/inspector/InjectedScriptModule.cpp
|
| +++ b/Source/core/inspector/InjectedScriptModule.cpp
|
| @@ -32,7 +32,7 @@
|
| #include "core/inspector/InjectedScriptModule.h"
|
|
|
| #include "bindings/v8/ScriptFunctionCall.h"
|
| -#include "bindings/v8/ScriptObject.h"
|
| +#include "bindings/v8/ScriptValue.h"
|
| #include "core/inspector/InjectedScript.h"
|
| #include "core/inspector/InjectedScriptManager.h"
|
|
|
| @@ -68,8 +68,7 @@ void InjectedScriptModule::ensureInjected(InjectedScriptManager* injectedScriptM
|
| }
|
| }
|
|
|
| - ScriptObject moduleObject(scriptState, resultValue);
|
| - initialize(moduleObject, injectedScriptManager->inspectedStateAccessCheck());
|
| + initialize(resultValue, injectedScriptManager->inspectedStateAccessCheck());
|
| }
|
|
|
| } // namespace WebCore
|
|
|