summaryrefslogtreecommitdiffstats
path: root/chrome/browser/safe_browsing/protocol_manager.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-22 14:25:02 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-22 14:25:02 +0000
commit4a19be92d9eb20b1619dcf27b7afd3c0da9c4a10 (patch)
treee4d06e495857a982c3565b9f59ebd63b400afd6a /chrome/browser/safe_browsing/protocol_manager.cc
parentb73e024521455a212687bce023d61a8089b2efe1 (diff)
downloadchromium_src-4a19be92d9eb20b1619dcf27b7afd3c0da9c4a10.zip
chromium_src-4a19be92d9eb20b1619dcf27b7afd3c0da9c4a10.tar.gz
chromium_src-4a19be92d9eb20b1619dcf27b7afd3c0da9c4a10.tar.bz2
net: Put more functions from escape.h into net namespace.
BUG=64263 TEST=None R=willchan@chromium.org Review URL: http://codereview.chromium.org/7978039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102271 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/safe_browsing/protocol_manager.cc')
-rw-r--r--chrome/browser/safe_browsing/protocol_manager.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/safe_browsing/protocol_manager.cc b/chrome/browser/safe_browsing/protocol_manager.cc
index 87e705e..412325a 100644
--- a/chrome/browser/safe_browsing/protocol_manager.cc
+++ b/chrome/browser/safe_browsing/protocol_manager.cc
@@ -797,9 +797,9 @@ GURL SafeBrowsingProtocolManager::SafeBrowsingHitUrl(
}
return GURL(base::StringPrintf("%s&evts=%s&evtd=%s&evtr=%s&evhr=%s&evtb=%d",
url.c_str(), threat_list.c_str(),
- EscapeQueryParamValue(malicious_url.spec(), true).c_str(),
- EscapeQueryParamValue(page_url.spec(), true).c_str(),
- EscapeQueryParamValue(referrer_url.spec(), true).c_str(),
+ net::EscapeQueryParamValue(malicious_url.spec(), true).c_str(),
+ net::EscapeQueryParamValue(page_url.spec(), true).c_str(),
+ net::EscapeQueryParamValue(referrer_url.spec(), true).c_str(),
is_subresource));
}