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

Unified Diff: webkit/child/multipart_response_delegate.cc

Issue 102843002: Move RemoveChars, ReplaceChars, TrimString, and TruncateUTF8ToByteSize to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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: webkit/child/multipart_response_delegate.cc
diff --git a/webkit/child/multipart_response_delegate.cc b/webkit/child/multipart_response_delegate.cc
index 550aab3ee2ffc5136d93b902116c632b6ce57e9d..a1e5702fa138753553d965a0ca0f2a30b917f11e 100644
--- a/webkit/child/multipart_response_delegate.cc
+++ b/webkit/child/multipart_response_delegate.cc
@@ -319,7 +319,7 @@ bool MultipartResponseDelegate::ReadMultipartBoundary(
// The byte range response can have quoted boundary strings. This is legal
// as per MIME specifications. Individual data fragements however don't
// contain quoted boundary strings.
- TrimString(*multipart_boundary, "\"", multipart_boundary);
+ base::TrimString(*multipart_boundary, "\"", multipart_boundary);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698