| Index: extensions/common/url_pattern.cc
|
| diff --git a/extensions/common/url_pattern.cc b/extensions/common/url_pattern.cc
|
| index 40142cf79cbbc2e573bb6d8a5b5a4e2b5cd860c3..ab24ccfc9967d379672b9e40b91d2c70175bf854 100644
|
| --- a/extensions/common/url_pattern.cc
|
| +++ b/extensions/common/url_pattern.cc
|
| @@ -329,8 +329,8 @@ void URLPattern::SetPath(const std::string& path) {
|
| spec_.clear();
|
| path_ = path;
|
| path_escaped_ = path_;
|
| - ReplaceSubstringsAfterOffset(&path_escaped_, 0, "\\", "\\\\");
|
| - ReplaceSubstringsAfterOffset(&path_escaped_, 0, "?", "\\?");
|
| + base::ReplaceSubstringsAfterOffset(&path_escaped_, 0, "\\", "\\\\");
|
| + base::ReplaceSubstringsAfterOffset(&path_escaped_, 0, "?", "\\?");
|
| }
|
|
|
| bool URLPattern::SetPort(const std::string& port) {
|
|
|