| Index: components/arc/intent_helper/intent_filter.cc
|
| diff --git a/components/arc/intent_helper/intent_filter.cc b/components/arc/intent_helper/intent_filter.cc
|
| index 7c9db064f5af3bcffb304943fdb4df00799fb989..ba00507eb01a48ea8ec73ac4588ad811a3afd708 100644
|
| --- a/components/arc/intent_helper/intent_filter.cc
|
| +++ b/components/arc/intent_helper/intent_filter.cc
|
| @@ -46,7 +46,7 @@ bool IntentFilter::Match(const GURL& url) const {
|
|
|
| // Transcribed from android's IntentFilter#hasDataPath.
|
| bool IntentFilter::HasDataPath(const GURL& url) const {
|
| - const std::string path = url.path();
|
| + const std::string path = url.path().as_string();
|
| for (const PatternMatcher& pattern : paths_) {
|
| if (pattern.Match(path)) {
|
| return true;
|
|
|