summaryrefslogtreecommitdiffstats
path: root/net/base/escape.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-12 06:41:54 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-12 06:41:54 +0000
commitf89276a70b260213900fc4b389927a17d57590f3 (patch)
tree7fcd968db3251d72d41f5bd206d905f3456e52e4 /net/base/escape.cc
parent69cff8e0a648b926014caa0ea1d6dd5f52ede712 (diff)
downloadchromium_src-f89276a70b260213900fc4b389927a17d57590f3.zip
chromium_src-f89276a70b260213900fc4b389927a17d57590f3.tar.gz
chromium_src-f89276a70b260213900fc4b389927a17d57590f3.tar.bz2
net: Migrate from googleurl/ includes to url/ ones.
BUG=229660 R=eroman@chromium.org TBR=eroman@chromium.org Review URL: https://chromiumcodereview.appspot.com/6362186595172352 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211347 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 bbd4d52..23b4eeb 100644
--- a/net/base/escape.cc
+++ b/net/base/escape.cc
@@ -74,8 +74,8 @@ std::string Escape(const std::string& text, const Charmap& charmap,
// you could get different behavior if you copy and paste the URL, or press
// enter in the URL bar. The list of characters that fall into this category
// are the ones labeled PASS (allow either escaped or unescaped) in the big
-// lookup table at the top of googleurl/src/url_canon_path.cc. Also, characters
-// that have CHAR_QUERY set in googleurl/src/url_canon_internal.cc but are not
+// lookup table at the top of url/url_canon_path.cc. Also, characters
+// that have CHAR_QUERY set in url/url_canon_internal.cc but are not
// allowed in query strings according to http://www.ietf.org/rfc/rfc3261.txt are
// not unescaped, to avoid turning a valid url according to spec into an
// invalid one.