| Index: third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp
|
| index 52176eda22f6e92ac259d0f8aad17761284d57ce..78b5f7d8adad4833eecca646921c93d4c1a14951 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp
|
| @@ -289,7 +289,7 @@ static bool namedPropertyFromDebuggerScopeExtension(v8::Local<v8::Name> name, co
|
| return false;
|
|
|
| bool isGetter = V8Debugger::isCommandLineAPIGetter(nameString);
|
| - bool isMethod = !isGetter && V8Debugger::isCommandLineAPIMethod(nameString);
|
| + bool isMethod = !isGetter && (V8Debugger::isCommandLineAPIMethod(nameString) || V8Debugger::isRemoteObjectAPIMethod(nameString));
|
| if (!isGetter && !isMethod)
|
| return false;
|
|
|
|
|