diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-22 14:25:02 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-22 14:25:02 +0000 |
commit | 4a19be92d9eb20b1619dcf27b7afd3c0da9c4a10 (patch) | |
tree | e4d06e495857a982c3565b9f59ebd63b400afd6a /chrome/common/custom_handlers | |
parent | b73e024521455a212687bce023d61a8089b2efe1 (diff) | |
download | chromium_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/common/custom_handlers')
-rw-r--r-- | chrome/common/custom_handlers/protocol_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/custom_handlers/protocol_handler.cc b/chrome/common/custom_handlers/protocol_handler.cc index 92eb48b..cbc1f97 100644 --- a/chrome/common/custom_handlers/protocol_handler.cc +++ b/chrome/common/custom_handlers/protocol_handler.cc @@ -53,7 +53,7 @@ ProtocolHandler ProtocolHandler::CreateProtocolHandler( GURL ProtocolHandler::TranslateUrl(const GURL& url) const { std::string translatedUrlSpec(url_.spec()); ReplaceSubstringsAfterOffset(&translatedUrlSpec, 0, "%s", - EscapeQueryParamValue(url.spec(), true)); + net::EscapeQueryParamValue(url.spec(), true)); return GURL(translatedUrlSpec); } |