| Index: chrome/renderer/safe_browsing/phishing_url_feature_extractor.cc
|
| diff --git a/chrome/renderer/safe_browsing/phishing_url_feature_extractor.cc b/chrome/renderer/safe_browsing/phishing_url_feature_extractor.cc
|
| index 1b416f2f5c2594dc07f9de6dad9698bbfef23d6b..735b4dad0d64494b8b95ed0a368209756424e50e 100644
|
| --- a/chrome/renderer/safe_browsing/phishing_url_feature_extractor.cc
|
| +++ b/chrome/renderer/safe_browsing/phishing_url_feature_extractor.cc
|
| @@ -87,7 +87,7 @@ bool PhishingUrlFeatureExtractor::ExtractFeatures(const GURL& url,
|
| }
|
|
|
| std::vector<std::string> long_tokens;
|
| - SplitStringIntoLongAlphanumTokens(url.path(), &long_tokens);
|
| + SplitStringIntoLongAlphanumTokens(url.path().as_string(), &long_tokens);
|
| for (const std::string& token : long_tokens) {
|
| if (!features->AddBooleanFeature(features::kUrlPathToken + token))
|
| return false;
|
|
|