| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/app_list/search/tokenized_string.h" | 5 #include "ui/app_list/search/tokenized_string.h" |
| 6 | 6 |
| 7 #include "base/i18n/break_iterator.h" | 7 #include "base/i18n/break_iterator.h" |
| 8 #include "base/i18n/case_conversion.h" | 8 #include "base/i18n/case_conversion.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "chrome/browser/ui/app_list/search/term_break_iterator.h" | 10 #include "ui/app_list/search/term_break_iterator.h" |
| 11 | 11 |
| 12 using base::i18n::BreakIterator; | 12 using base::i18n::BreakIterator; |
| 13 | 13 |
| 14 namespace app_list { | 14 namespace app_list { |
| 15 | 15 |
| 16 TokenizedString::TokenizedString(const base::string16& text) | 16 TokenizedString::TokenizedString(const base::string16& text) |
| 17 : text_(text) { | 17 : text_(text) { |
| 18 Tokenize(); | 18 Tokenize(); |
| 19 } | 19 } |
| 20 | 20 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 37 TermBreakIterator term_iter(word); | 37 TermBreakIterator term_iter(word); |
| 38 while (term_iter.Advance()) { | 38 while (term_iter.Advance()) { |
| 39 tokens_.push_back(base::i18n::ToLower(term_iter.GetCurrentTerm())); | 39 tokens_.push_back(base::i18n::ToLower(term_iter.GetCurrentTerm())); |
| 40 mappings_.push_back(gfx::Range(word_start + term_iter.prev(), | 40 mappings_.push_back(gfx::Range(word_start + term_iter.prev(), |
| 41 word_start + term_iter.pos())); | 41 word_start + term_iter.pos())); |
| 42 } | 42 } |
| 43 } | 43 } |
| 44 } | 44 } |
| 45 | 45 |
| 46 } // namespace app_list | 46 } // namespace app_list |
| OLD | NEW |