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

Unified Diff: pdf/document_loader.cc

Issue 448143008: Move StringToUpperASCII and LowerCaseEqualsASCII to the base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « net/websockets/websocket_handshake_handler.cc ('k') | ui/base/l10n/l10n_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/document_loader.cc
diff --git a/pdf/document_loader.cc b/pdf/document_loader.cc
index 6b871d60850964f015d3c4ef5d2d0f0c1e3fbf58..132d27d59c396457c392e61f2b835df6076f3b4c 100644
--- a/pdf/document_loader.cc
+++ b/pdf/document_loader.cc
@@ -55,20 +55,20 @@ bool DocumentLoader::Init(const pp::URLLoader& loader,
net::HttpUtil::HeadersIterator it(response_headers.begin(),
response_headers.end(), "\n");
while (it.GetNext()) {
- if (LowerCaseEqualsASCII(it.name(), "content-length")) {
+ if (base::LowerCaseEqualsASCII(it.name(), "content-length")) {
content_length = atoi(it.values().c_str());
- } else if (LowerCaseEqualsASCII(it.name(), "accept-ranges")) {
- accept_ranges_bytes = LowerCaseEqualsASCII(it.values(), "bytes");
- } else if (LowerCaseEqualsASCII(it.name(), "content-encoding")) {
+ } else if (base::LowerCaseEqualsASCII(it.name(), "accept-ranges")) {
+ accept_ranges_bytes = base::LowerCaseEqualsASCII(it.values(), "bytes");
+ } else if (base::LowerCaseEqualsASCII(it.name(), "content-encoding")) {
content_encoded = true;
- } else if (LowerCaseEqualsASCII(it.name(), "content-type")) {
+ } else if (base::LowerCaseEqualsASCII(it.name(), "content-type")) {
type = it.values();
size_t semi_colon_pos = type.find(';');
if (semi_colon_pos != std::string::npos) {
type = type.substr(0, semi_colon_pos);
}
TrimWhitespace(type, base::TRIM_ALL, &type);
- } else if (LowerCaseEqualsASCII(it.name(), "content-disposition")) {
+ } else if (base::LowerCaseEqualsASCII(it.name(), "content-disposition")) {
disposition = it.values();
}
}
@@ -334,7 +334,7 @@ bool DocumentLoader::GetByteRange(const std::string& headers, uint32* start,
uint32* end) {
net::HttpUtil::HeadersIterator it(headers.begin(), headers.end(), "\n");
while (it.GetNext()) {
- if (LowerCaseEqualsASCII(it.name(), "content-range")) {
+ if (base::LowerCaseEqualsASCII(it.name(), "content-range")) {
std::string range = it.values().c_str();
if (StartsWithASCII(range, "bytes", false)) {
range = range.substr(strlen("bytes"));
@@ -356,7 +356,7 @@ bool DocumentLoader::GetByteRange(const std::string& headers, uint32* start,
std::string DocumentLoader::GetMultiPartBoundary(const std::string& headers) {
net::HttpUtil::HeadersIterator it(headers.begin(), headers.end(), "\n");
while (it.GetNext()) {
- if (LowerCaseEqualsASCII(it.name(), "content-type")) {
+ if (base::LowerCaseEqualsASCII(it.name(), "content-type")) {
std::string type = base::StringToLowerASCII(it.values());
if (StartsWithASCII(type, "multipart/", true)) {
const char* boundary = strstr(type.c_str(), "boundary=");
« no previous file with comments | « net/websockets/websocket_handshake_handler.cc ('k') | ui/base/l10n/l10n_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698