| Index: src/inspector/v8-debugger.cc
|
| diff --git a/src/inspector/v8-debugger.cc b/src/inspector/v8-debugger.cc
|
| index 1509993a8261dc4a2fb6610ebc8a936e5a73805f..f43d1e55059ea12ea5b4e5c0c894588a53fe3863 100644
|
| --- a/src/inspector/v8-debugger.cc
|
| +++ b/src/inspector/v8-debugger.cc
|
| @@ -126,8 +126,6 @@ void V8Debugger::getCompiledScripts(
|
| for (size_t i = 0; i < scripts.Size(); ++i) {
|
| v8::Local<v8::DebugInterface::Script> script = scripts.Get(i);
|
| if (!script->WasCompiled()) continue;
|
| - v8::ScriptOriginOptions origin = script->OriginOptions();
|
| - if (origin.IsEmbedderDebugScript()) continue;
|
| v8::Local<v8::String> v8ContextData;
|
| if (!script->ContextData().ToLocal(&v8ContextData)) continue;
|
| String16 contextData = toProtocolString(v8ContextData);
|
|
|