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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8InjectedScriptHost.cpp

Issue 1855393003: [DevTools] Fix custom formatters (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/platform/v8_inspector/V8InjectedScriptHost.cpp
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8InjectedScriptHost.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8InjectedScriptHost.cpp
index a15552bc3c419a766b4781ffd4415373b01d0121..f93990ee0ba16534747677be9ecf34127851c02e 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8InjectedScriptHost.cpp
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8InjectedScriptHost.cpp
@@ -386,6 +386,11 @@ bool V8Debugger::isCommandLineAPIGetter(const String16& name)
return getters.find(name) != getters.end();
}
+bool V8Debugger::isRemoteObjectAPIMethod(const String16& name)
+{
+ return name == "bindRemoteObject";
dgozman 2016/04/04 22:45:34 Let's instead move last bits of implementation to
kozy 2016/04/04 23:28:14 Since it's regression, I'll land it first and then
+}
+
namespace {
char hiddenPropertyName[] = "v8inspector::InjectedScriptHost";

Powered by Google App Engine
This is Rietveld 408576698