summaryrefslogtreecommitdiffstats
path: root/chrome_frame
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 14:58:21 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 14:58:21 +0000
commitb60ae4b0ea0bcdd455e45a4971da0ddfc6464c69 (patch)
treea42e9aab2c457c4018c0218afa7673460262dd08 /chrome_frame
parentbe762d998ddb7f94f5192e373e9fd339eb3d5397 (diff)
downloadchromium_src-b60ae4b0ea0bcdd455e45a4971da0ddfc6464c69.zip
chromium_src-b60ae4b0ea0bcdd455e45a4971da0ddfc6464c69.tar.gz
chromium_src-b60ae4b0ea0bcdd455e45a4971da0ddfc6464c69.tar.bz2
net: Move UnescapeRule into the net namespace.
BUG=64263 TEST=None R=willchan@chromium.org Review URL: http://codereview.chromium.org/8552002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110085 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-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 f6a74b7..7f48648 100644
--- a/chrome_frame/utils.cc
+++ b/chrome_frame/utils.cc
@@ -1424,7 +1424,7 @@ bool ChromeFrameUrl::ParseAttachExternalTabUrl() {
profile_name_ = tokenizer.token();
// Escape out special characters like %20, etc.
profile_name_ = net::UnescapeURLComponent(profile_name_,
- UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
+ net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS);
} else {
return false;
}