| Index: third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.cpp
|
| index 843c7c0eb048772f4274ead287b9ef24c57cc34d..b685e816fcbb2f7eda42c07620b88b789826ccc0 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.cpp
|
| @@ -193,8 +193,6 @@ std::vector<std::unique_ptr<protocol::Debugger::SearchMatch>> searchInTextByLine
|
| return result;
|
| }
|
|
|
| -namespace V8ContentSearchUtil {
|
| -
|
| String16 findSourceURL(const String16& content, bool multiline, bool* deprecated)
|
| {
|
| return findMagicComment(content, "sourceURL", multiline, deprecated);
|
| @@ -205,6 +203,8 @@ String16 findSourceMapURL(const String16& content, bool multiline, bool* depreca
|
| return findMagicComment(content, "sourceMappingURL", multiline, deprecated);
|
| }
|
|
|
| +namespace V8ContentSearchUtil {
|
| +
|
| std::unique_ptr<protocol::Array<protocol::Debugger::API::SearchMatch>> searchInTextByLines(V8InspectorSession* session, const String16& text, const String16& query, const bool caseSensitive, const bool isRegex)
|
| {
|
| std::vector<std::unique_ptr<protocol::Debugger::SearchMatch>> matches = searchInTextByLinesImpl(session, text, query, caseSensitive, isRegex);
|
|
|