| 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;
|
| }
|
|
|