Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1466)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.cpp

Issue 2226863003: [DevTools] Reduce API surface of String16. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 eefff681e684ad6fb5e79fe1fc20d171fcaf5709..4049031bea61035dda201fbf3f09827c46ce9d80 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.cpp
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.cpp
@@ -15,7 +15,7 @@ namespace {
String16 findMagicComment(const String16& content, const String16& name, bool multiline)
{
- DCHECK(name.find("=") == kNotFound);
+ DCHECK(name.find("=") == String16::kNotFound);
unsigned length = content.length();
unsigned nameLength = name.length();
@@ -24,7 +24,7 @@ String16 findMagicComment(const String16& content, const String16& name, bool mu
size_t closingCommentPos = 0;
while (true) {
pos = content.reverseFind(name, pos);
- if (pos == kNotFound)
+ if (pos == String16::kNotFound)
return String16();
// Check for a /\/[\/*][@#][ \t]/ regexp (length of 4) before found name.
@@ -45,7 +45,7 @@ String16 findMagicComment(const String16& content, const String16& name, bool mu
continue;
if (multiline) {
closingCommentPos = content.find("*/", equalSignPos + 1);
- if (closingCommentPos == kNotFound)
+ if (closingCommentPos == String16::kNotFound)
return String16();
}
@@ -60,13 +60,13 @@ String16 findMagicComment(const String16& content, const String16& name, bool mu
: content.substring(urlPos);
size_t newLine = match.find("\n");
- if (newLine != kNotFound)
+ if (newLine != String16::kNotFound)
match = match.substring(0, newLine);
match = match.stripWhiteSpace();
- String16 disallowedChars("\"' \t");
for (unsigned i = 0; i < match.length(); ++i) {
- if (disallowedChars.find(match[i]) != kNotFound)
+ UChar c = match[i];
+ if (c == '"' || c == '\'' || c == ' ' || c == '\t')
return "";
}
@@ -76,11 +76,14 @@ String16 findMagicComment(const String16& content, const String16& name, bool mu
String16 createSearchRegexSource(const String16& text)
{
String16Builder result;
- String16 specials("[](){}+-*.,?\\^$|");
for (unsigned i = 0; i < text.length(); i++) {
- if (specials.find(text[i]) != kNotFound)
+ UChar c = text[i];
+ if (c == '[' || c == ']' || c == '(' || c == ')' || c == '{' || c == '}'
+ || c == '+' || c == '-' || c == '*' || c == '.' || c == ',' || c == '?'
+ || c == '\\' || c == '^' || c == '$' || c == '|') {
result.append('\\');
+ }
result.append(text[i]);
}
@@ -91,10 +94,11 @@ std::unique_ptr<std::vector<unsigned>> lineEndings(const String16& text)
{
std::unique_ptr<std::vector<unsigned>> result(new std::vector<unsigned>());
+ const String16 lineEndString = "\n";
unsigned start = 0;
while (start < text.length()) {
- size_t lineEnd = text.find('\n', start);
- if (lineEnd == kNotFound)
+ size_t lineEnd = text.find(lineEndString, start);
+ if (lineEnd == String16::kNotFound)
break;
result->push_back(static_cast<unsigned>(lineEnd));
@@ -117,7 +121,7 @@ std::vector<std::pair<int, String16>> scriptRegexpMatchesByLines(const V8Regex&
for (unsigned lineNumber = 0; lineNumber < size; ++lineNumber) {
unsigned lineEnd = endings->at(lineNumber);
String16 line = text.substring(start, lineEnd - start);
- if (line.endsWith('\r'))
+ if (line.length() && line[line.length() - 1] == '\r')
line = line.substring(0, line.length() - 1);
int matchLength;

Powered by Google App Engine
This is Rietveld 408576698