summaryrefslogtreecommitdiffstats
path: root/net/base/escape.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-09 21:02:31 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-09 21:02:31 +0000
commit30426c385b563f5014e81110b1f0d98c58100847 (patch)
tree274fb3dc5bad45f430b76b72e007f21edd600f9a /net/base/escape.cc
parentf09d55d9bcd61359dc0fafcad4158d9946cd674e (diff)
downloadchromium_src-30426c385b563f5014e81110b1f0d98c58100847.zip
chromium_src-30426c385b563f5014e81110b1f0d98c58100847.tar.gz
chromium_src-30426c385b563f5014e81110b1f0d98c58100847.tar.bz2
net: Move the last two Escape() functions into the net namespace.
BUG=64263 TEST=None R=willchan@chromium.org Review URL: http://codereview.chromium.org/8507011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109298 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/escape.cc')
-rw-r--r--net/base/escape.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/base/escape.cc b/net/base/escape.cc
index 830d5c2..f607a0e 100644
--- a/net/base/escape.cc
+++ b/net/base/escape.cc
@@ -249,6 +249,8 @@ static const Charmap kExternalHandlerCharmap(
} // namespace
+namespace net {
+
std::string EscapePath(const std::string& path) {
return Escape(path, kPathCharmap, false);
}
@@ -257,8 +259,6 @@ std::string EscapeUrlEncodedData(const std::string& path, bool use_plus) {
return Escape(path, kUrlEscape, use_plus);
}
-namespace net {
-
std::string EscapeNonASCII(const std::string& input) {
return Escape(input, kNonASCIICharmap, false);
}