| Index: extensions/common/url_pattern.cc
|
| diff --git a/extensions/common/url_pattern.cc b/extensions/common/url_pattern.cc
|
| index 81edf7f55b09e6a74ba9fc4911421ecf3e9733de..4fd1661b7c2d428a10f750f9cc4f953b8459857c 100644
|
| --- a/extensions/common/url_pattern.cc
|
| +++ b/extensions/common/url_pattern.cc
|
| @@ -370,7 +370,7 @@ bool URLPattern::MatchesURL(const GURL& test) const {
|
|
|
| std::string path_for_request = test.PathForRequest();
|
| if (has_inner_url)
|
| - path_for_request = test_url->path() + path_for_request;
|
| + path_for_request = test_url->path().as_string() + path_for_request;
|
|
|
| return MatchesSecurityOriginHelper(*test_url) &&
|
| MatchesPath(path_for_request);
|
|
|