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

Unified Diff: chrome/browser/policy/device_management_backend_impl.cc

Issue 7978039: net: Put more functions from escape.h into net namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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
Index: chrome/browser/policy/device_management_backend_impl.cc
diff --git a/chrome/browser/policy/device_management_backend_impl.cc b/chrome/browser/policy/device_management_backend_impl.cc
index c111ad3e1788dea46ec5b5894761517af814784a..39889dc28bdea44191d4db15da2be5974d9981c3 100644
--- a/chrome/browser/policy/device_management_backend_impl.cc
+++ b/chrome/browser/policy/device_management_backend_impl.cc
@@ -111,9 +111,9 @@ std::string URLQueryParameters::Encode() {
++entry) {
if (entry != params_.begin())
result += '&';
- result += EscapeQueryParamValue(entry->first, true);
+ result += net::EscapeQueryParamValue(entry->first, true);
result += '=';
- result += EscapeQueryParamValue(entry->second, true);
+ result += net::EscapeQueryParamValue(entry->second, true);
}
return result;
}
« no previous file with comments | « chrome/browser/notifications/desktop_notification_service.cc ('k') | chrome/browser/safe_browsing/protocol_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698