From 48797906a6bba708e777908049b8496035ed860f Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Sun, 2 Oct 2011 23:05:08 +0000 Subject: 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 --- chrome_frame/utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chrome_frame/utils.cc') 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; -- cgit v1.1