Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(571)

Unified Diff: third_party/WebKit/Source/core/inspector/InjectedScriptHost.cpp

Issue 1636223002: DevTools: remove ScriptState/Value from the InjectedScript APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698