summaryrefslogtreecommitdiffstats
path: root/components/url_matcher/regex_set_matcher.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-07 16:55:42 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-07 16:55:42 +0000
commitcb1f4ac35e1e687925fdf62f7f62140dcd6d4a1d (patch)
tree953168adbbb3a7ff1c069911b764ffbed2369384 /components/url_matcher/regex_set_matcher.cc
parentb7a95ad6f584b029954c3b398993f49f1d69265e (diff)
downloadchromium_src-cb1f4ac35e1e687925fdf62f7f62140dcd6d4a1d.zip
chromium_src-cb1f4ac35e1e687925fdf62f7f62140dcd6d4a1d.tar.gz
chromium_src-cb1f4ac35e1e687925fdf62f7f62140dcd6d4a1d.tar.bz2
Move StringToLowerASCII to base namespace
TBR=sky Review URL: https://codereview.chromium.org/448853002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288085 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/url_matcher/regex_set_matcher.cc')
-rw-r--r--components/url_matcher/regex_set_matcher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/url_matcher/regex_set_matcher.cc b/components/url_matcher/regex_set_matcher.cc
index c0b977c..1b0b7f3 100644
--- a/components/url_matcher/regex_set_matcher.cc
+++ b/components/url_matcher/regex_set_matcher.cc
@@ -48,7 +48,7 @@ bool RegexSetMatcher::Match(const std::string& text,
// FilteredRE2 expects lowercase for prefiltering, but we still
// match case-sensitively.
std::vector<RE2ID> atoms(FindSubstringMatches(
- StringToLowerASCII(text)));
+ base::StringToLowerASCII(text)));
std::vector<RE2ID> re2_ids;
filtered_re2_->AllMatches(text, atoms, &re2_ids);