Index: third_party/WebKit/Source/core/inspector/InjectedScriptHost.cpp |
diff --git a/third_party/WebKit/Source/core/inspector/InjectedScriptHost.cpp b/third_party/WebKit/Source/core/inspector/InjectedScriptHost.cpp |
index 9ffb552014f6e22ff9e481e93e1902344e6d69ed..12cf288305cf0c0a838fd7f42a07af4b066e1b9b 100644 |
--- a/third_party/WebKit/Source/core/inspector/InjectedScriptHost.cpp |
+++ b/third_party/WebKit/Source/core/inspector/InjectedScriptHost.cpp |
@@ -81,9 +81,9 @@ void InjectedScriptHost::clearConsoleMessages() |
(*m_clearConsoleCallback)(); |
} |
-ScriptValue InjectedScriptHost::InspectableObject::get(ScriptState*) |
+v8::Local<v8::Value> InjectedScriptHost::InspectableObject::get(v8::Local<v8::Context>) |
{ |
- return ScriptValue(); |
+ return v8::Local<v8::Value>(); |
}; |
void InjectedScriptHost::addInspectedObject(PassOwnPtr<InjectedScriptHost::InspectableObject> object) |