summaryrefslogtreecommitdiffstats
path: root/chrome/browser/history/snippet.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/history/snippet.cc')
-rw-r--r--chrome/browser/history/snippet.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/history/snippet.cc b/chrome/browser/history/snippet.cc
index 47c11c3..327b3b5 100644
--- a/chrome/browser/history/snippet.cc
+++ b/chrome/browser/history/snippet.cc
@@ -167,7 +167,7 @@ void Snippet::ExtractMatchPositions(const std::string& offsets_str,
if (offsets_str.empty())
return;
std::vector<std::string> offsets;
- SplitString(offsets_str, ' ', &offsets);
+ base::SplitString(offsets_str, ' ', &offsets);
// SQLite offsets are sets of four integers:
// column, query term, match offset, match length
// Matches within a string are marked by (start, end) pairs.