Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: components/omnibox/answers_cache.cc

Issue 1172183002: Move StartsWith[ASCII] to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util3
Patch Set: merger Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/omnibox/answers_cache.h" 5 #include "components/omnibox/answers_cache.h"
6 6
7 #include "base/strings/string_util.h" 7 #include "base/strings/string_util.h"
8 8
9 AnswersQueryData::AnswersQueryData() { 9 AnswersQueryData::AnswersQueryData() {
10 } 10 }
11 AnswersQueryData::AnswersQueryData(const base::string16& text, 11 AnswersQueryData::AnswersQueryData(const base::string16& text,
12 const base::string16& type) 12 const base::string16& type)
13 : full_query_text(text), query_type(type) { 13 : full_query_text(text), query_type(type) {
14 } 14 }
15 15
16 AnswersCache::AnswersCache(size_t max_entries) : max_entries_(max_entries) { 16 AnswersCache::AnswersCache(size_t max_entries) : max_entries_(max_entries) {
17 } 17 }
18 18
19 AnswersCache::~AnswersCache() { 19 AnswersCache::~AnswersCache() {
20 } 20 }
21 21
22 AnswersQueryData AnswersCache::GetTopAnswerEntry(const base::string16& query) { 22 AnswersQueryData AnswersCache::GetTopAnswerEntry(const base::string16& query) {
23 base::string16 collapsed_query = base::CollapseWhitespace(query, false); 23 base::string16 collapsed_query = base::CollapseWhitespace(query, false);
24 for (Cache::iterator it = cache_.begin(); it != cache_.end(); ++it) { 24 for (Cache::iterator it = cache_.begin(); it != cache_.end(); ++it) {
25 // If the query text starts with trimmed input, this is valid prefetch data. 25 // If the query text starts with trimmed input, this is valid prefetch data.
26 if (StartsWith(it->full_query_text, collapsed_query, false)) { 26 if (base::StartsWith(it->full_query_text, collapsed_query, false)) {
27 // Move the touched item to the front of the list. 27 // Move the touched item to the front of the list.
28 cache_.splice(cache_.begin(), cache_, it); 28 cache_.splice(cache_.begin(), cache_, it);
29 return cache_.front(); 29 return cache_.front();
30 } 30 }
31 } 31 }
32 return AnswersQueryData(); 32 return AnswersQueryData();
33 } 33 }
34 34
35 void AnswersCache::UpdateRecentAnswers(const base::string16& full_query_text, 35 void AnswersCache::UpdateRecentAnswers(const base::string16& full_query_text,
36 const base::string16& query_type) { 36 const base::string16& query_type) {
37 // If this entry is already part of the cache, just update recency. 37 // If this entry is already part of the cache, just update recency.
38 for (Cache::iterator it = cache_.begin(); it != cache_.end(); ++it) { 38 for (Cache::iterator it = cache_.begin(); it != cache_.end(); ++it) {
39 if (full_query_text == it->full_query_text && 39 if (full_query_text == it->full_query_text &&
40 query_type == it->query_type) { 40 query_type == it->query_type) {
41 cache_.splice(cache_.begin(), cache_, it); 41 cache_.splice(cache_.begin(), cache_, it);
42 return; 42 return;
43 } 43 }
44 } 44 }
45 45
46 // Evict if cache size is exceeded. 46 // Evict if cache size is exceeded.
47 if (cache_.size() >= max_entries_) 47 if (cache_.size() >= max_entries_)
48 cache_.pop_back(); 48 cache_.pop_back();
49 49
50 cache_.push_front(AnswersQueryData(full_query_text, query_type)); 50 cache_.push_front(AnswersQueryData(full_query_text, query_type));
51 } 51 }
OLDNEW
« no previous file with comments | « components/nacl/renderer/ppb_nacl_private_impl.cc ('k') | components/omnibox/base_search_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698