diff options
Diffstat (limited to 'net/base/escape.cc')
-rw-r--r-- | net/base/escape.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/base/escape.cc b/net/base/escape.cc index f607a0e..8c488d1 100644 --- a/net/base/escape.cc +++ b/net/base/escape.cc @@ -13,6 +13,8 @@ #include "base/utf_offset_string_conversions.h" #include "base/utf_string_conversions.h" +namespace net { + namespace { const char kHexString[] = "0123456789ABCDEF"; @@ -249,8 +251,6 @@ static const Charmap kExternalHandlerCharmap( } // namespace -namespace net { - std::string EscapePath(const std::string& path) { return Escape(path, kPathCharmap, false); } |