| 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";
|
| +}
|
| +
|
| namespace {
|
|
|
| char hiddenPropertyName[] = "v8inspector::InjectedScriptHost";
|
|
|