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

Unified Diff: net/base/mime_sniffer.cc

Issue 1200053004: Move more string_util functions to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « net/base/escape.cc ('k') | net/base/net_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/mime_sniffer.cc
diff --git a/net/base/mime_sniffer.cc b/net/base/mime_sniffer.cc
index 447f59402bd36ba8e8fa4a3088d09ff68d658985..907c7c4f0998947e2c91a41dbbc1f29e75d7de88 100644
--- a/net/base/mime_sniffer.cc
+++ b/net/base/mime_sniffer.cc
@@ -405,7 +405,7 @@ static bool SniffForHTML(const char* content,
const char* const end = content + size;
const char* pos;
for (pos = content; pos < end; ++pos) {
- if (!IsAsciiWhitespace(*pos))
+ if (!base::IsAsciiWhitespace(*pos))
break;
}
static base::HistogramBase* counter(NULL);
« no previous file with comments | « net/base/escape.cc ('k') | net/base/net_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698