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

Unified Diff: google_apis/cup/client_update_protocol.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: google_apis/cup/client_update_protocol.cc
diff --git a/google_apis/cup/client_update_protocol.cc b/google_apis/cup/client_update_protocol.cc
index e730557164fe96001b522393f9fa7db9ffcec3cb..0ff3d8f0b09db0fa2cf9760f296400d8c40468df 100644
--- a/google_apis/cup/client_update_protocol.cc
+++ b/google_apis/cup/client_update_protocol.cc
@@ -138,7 +138,7 @@ std::string UrlSafeB64Encode(const std::vector<uint8>& data) {
break;
}
}
- TrimString(result, "=", &result);
+ base::TrimString(result, "=", &result);
return result;
}

Powered by Google App Engine
This is Rietveld 408576698