summaryrefslogtreecommitdiffstats
path: root/chrome_frame/utils.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-02 23:05:08 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-02 23:05:08 +0000
commit48797906a6bba708e777908049b8496035ed860f (patch)
treec3b9f76f773e92ad70e0f3352ff5d518be1b17d3 /chrome_frame/utils.cc
parent2cec759bc34b3f3e7fb3a624474f8ea188a3c975 (diff)
downloadchromium_src-48797906a6bba708e777908049b8496035ed860f.zip
chromium_src-48797906a6bba708e777908049b8496035ed860f.tar.gz
chromium_src-48797906a6bba708e777908049b8496035ed860f.tar.bz2
net: Move UnescapeURLComponent() functions into net namespace.
BUG=64263 TEST=None R=willchan@chromium.org Review URL: http://codereview.chromium.org/8109004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103677 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/utils.cc')
-rw-r--r--chrome_frame/utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/utils.cc b/chrome_frame/utils.cc
index b9dcc5a..283de44 100644
--- a/chrome_frame/utils.cc
+++ b/chrome_frame/utils.cc
@@ -1419,7 +1419,7 @@ bool ChromeFrameUrl::ParseAttachExternalTabUrl() {
if (tokenizer.GetNext()) {
profile_name_ = tokenizer.token();
// Escape out special characters like %20, etc.
- profile_name_ = UnescapeURLComponent(profile_name_,
+ profile_name_ = net::UnescapeURLComponent(profile_name_,
UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
} else {
return false;