| 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 8a1af7182a2367b30b76fcae2acf5cd91312334b..352f7c14115f78060ee854d7ba120470551d9bd1 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp
|
| @@ -251,7 +251,7 @@ static bool namedPropertyFromDebuggerScopeExtension(v8::Local<v8::Name> name, co
|
| return false;
|
|
|
| bool isGetter = V8Debugger::isCommandLineAPIGetter(nameString);
|
| - bool isMethod = !isGetter && (V8Debugger::isCommandLineAPIMethod(nameString) || V8Debugger::isRemoteObjectAPIMethod(nameString));
|
| + bool isMethod = !isGetter && V8Debugger::isCommandLineAPIMethod(nameString);
|
| if (!isGetter && !isMethod)
|
| return false;
|
|
|
|
|