Index: net/base/escape.cc |
diff --git a/net/base/escape.cc b/net/base/escape.cc |
index 9f119d8652ce86a913f7a9f5a6db7a930a3649a4..08eebfa0716576429a0bd7b76ca2ba6ed79f5f6f 100644 |
--- a/net/base/escape.cc |
+++ b/net/base/escape.cc |
@@ -212,8 +212,9 @@ static const Charmap kUrlEscape( |
0xffffffffL, 0xffffffffL, 0xffffffffL, 0xffffffffL |
); |
-std::string EscapeUrlEncodedData(const std::string& path) { |
- return Escape(path, kUrlEscape, true); |
+std::string EscapeUrlEncodedData(const std::string& path, |
+ bool use_plus) { |
+ return Escape(path, kUrlEscape, use_plus); |
} |
// non-7bit |