Chromium Code Reviews| 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"; |