| Index: chrome/browser/history/snippet.cc
|
| diff --git a/chrome/browser/history/snippet.cc b/chrome/browser/history/snippet.cc
|
| index 47c11c33b04405da0ea20bcf015fcd42a1bd6f8e..327b3b559fdd15ffbc147309bddc82fe4e24bbc0 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.
|
|
|