| Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp
|
| index 20f19e5afe09ee0975b806215c2770e1c33d1e42..63ac94240e7de1be7b2443e0999c31cb592437f4 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp
|
| @@ -16,7 +16,6 @@
|
| #include "platform/v8_inspector/V8RuntimeAgentImpl.h"
|
| #include "platform/v8_inspector/V8StackTraceImpl.h"
|
| #include "platform/v8_inspector/V8StringUtil.h"
|
| -#include "platform/v8_inspector/public/V8ContentSearchUtil.h"
|
| #include "platform/v8_inspector/public/V8Debugger.h"
|
| #include "platform/v8_inspector/public/V8DebuggerClient.h"
|
|
|
| @@ -994,15 +993,15 @@ void V8DebuggerAgentImpl::didParseSource(std::unique_ptr<V8DebuggerScript> scrip
|
| String16 scriptSource = toProtocolString(script->source(m_isolate));
|
| bool isDeprecatedSourceURL = false;
|
| if (!success)
|
| - script->setSourceURL(V8ContentSearchUtil::findSourceURL(scriptSource, false, &isDeprecatedSourceURL));
|
| + script->setSourceURL(findSourceURL(scriptSource, false, &isDeprecatedSourceURL));
|
| else if (script->hasSourceURL())
|
| - V8ContentSearchUtil::findSourceURL(scriptSource, false, &isDeprecatedSourceURL);
|
| + findSourceURL(scriptSource, false, &isDeprecatedSourceURL);
|
|
|
| bool isDeprecatedSourceMappingURL = false;
|
| if (!success)
|
| - script->setSourceMappingURL(V8ContentSearchUtil::findSourceMapURL(scriptSource, false, &isDeprecatedSourceMappingURL));
|
| + script->setSourceMappingURL(findSourceMapURL(scriptSource, false, &isDeprecatedSourceMappingURL));
|
| else if (!script->sourceMappingURL().isEmpty())
|
| - V8ContentSearchUtil::findSourceMapURL(scriptSource, false, &isDeprecatedSourceMappingURL);
|
| + findSourceMapURL(scriptSource, false, &isDeprecatedSourceMappingURL);
|
|
|
| bool isContentScript = script->isContentScript();
|
| bool isInternalScript = script->isInternalScript();
|
|
|