diff options
Diffstat (limited to 'components/suggestions')
-rw-r--r-- | components/suggestions/suggestions_service.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/suggestions/suggestions_service.cc b/components/suggestions/suggestions_service.cc index dde38a1..f8f1398 100644 --- a/components/suggestions/suggestions_service.cc +++ b/components/suggestions/suggestions_service.cc @@ -178,9 +178,8 @@ void SuggestionsService::UndoBlacklistURL( // static bool SuggestionsService::GetBlacklistedUrl(const net::URLFetcher& request, GURL* url) { - bool is_blacklist_request = StartsWithASCII(request.GetOriginalURL().spec(), - kSuggestionsBlacklistURLPrefix, - true); + bool is_blacklist_request = base::StartsWithASCII( + request.GetOriginalURL().spec(), kSuggestionsBlacklistURLPrefix, true); if (!is_blacklist_request) return false; // Extract the blacklisted URL from the blacklist request. |