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

Unified Diff: content/renderer/p2p/port_allocator.cc

Issue 183853011: Move TrimWhitespace to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | « content/renderer/npapi/webplugin_impl_unittest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/p2p/port_allocator.cc
diff --git a/content/renderer/p2p/port_allocator.cc b/content/renderer/p2p/port_allocator.cc
index 1be81520a548e5b80d652d8d8c24811a598bb84b..6c60f4717373ecc18f902b18a41f0659ed844436 100644
--- a/content/renderer/p2p/port_allocator.cc
+++ b/content/renderer/p2p/port_allocator.cc
@@ -225,8 +225,8 @@ void P2PPortAllocatorSession::ParseRelayResponse() {
it != value_pairs.end(); ++it) {
std::string key;
std::string value;
- TrimWhitespaceASCII(it->first, TRIM_ALL, &key);
- TrimWhitespaceASCII(it->second, TRIM_ALL, &value);
+ base::TrimWhitespaceASCII(it->first, base::TRIM_ALL, &key);
+ base::TrimWhitespaceASCII(it->second, base::TRIM_ALL, &value);
if (key == "username") {
if (value != username()) {
« no previous file with comments | « content/renderer/npapi/webplugin_impl_unittest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698