| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/autocomplete/url_index_private_data.h" | 5 #include "components/omnibox/url_index_private_data.h" |
| 6 | 6 |
| 7 #include <functional> | 7 #include <functional> |
| 8 #include <iterator> | 8 #include <iterator> |
| 9 #include <limits> | 9 #include <limits> |
| 10 #include <numeric> | 10 #include <numeric> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/files/file_util.h" | 15 #include "base/files/file_util.h" |
| 16 #include "base/i18n/break_iterator.h" | 16 #include "base/i18n/break_iterator.h" |
| 17 #include "base/i18n/case_conversion.h" | 17 #include "base/i18n/case_conversion.h" |
| 18 #include "base/metrics/histogram.h" | 18 #include "base/metrics/histogram.h" |
| 19 #include "base/strings/string_util.h" | 19 #include "base/strings/string_util.h" |
| 20 #include "base/strings/utf_string_conversions.h" | 20 #include "base/strings/utf_string_conversions.h" |
| 21 #include "base/time/time.h" | 21 #include "base/time/time.h" |
| 22 #include "chrome/browser/autocomplete/in_memory_url_index.h" | |
| 23 #include "components/bookmarks/browser/bookmark_model.h" | 22 #include "components/bookmarks/browser/bookmark_model.h" |
| 24 #include "components/bookmarks/browser/bookmark_utils.h" | 23 #include "components/bookmarks/browser/bookmark_utils.h" |
| 25 #include "components/history/core/browser/history_database.h" | 24 #include "components/history/core/browser/history_database.h" |
| 26 #include "components/history/core/browser/history_db_task.h" | 25 #include "components/history/core/browser/history_db_task.h" |
| 27 #include "components/history/core/browser/history_service.h" | 26 #include "components/history/core/browser/history_service.h" |
| 27 #include "components/omnibox/in_memory_url_index.h" |
| 28 #include "net/base/net_util.h" | 28 #include "net/base/net_util.h" |
| 29 | 29 |
| 30 #if defined(USE_SYSTEM_PROTOBUF) | 30 #if defined(USE_SYSTEM_PROTOBUF) |
| 31 #include <google/protobuf/repeated_field.h> | 31 #include <google/protobuf/repeated_field.h> |
| 32 #else | 32 #else |
| 33 #include "third_party/protobuf/src/google/protobuf/repeated_field.h" | 33 #include "third_party/protobuf/src/google/protobuf/repeated_field.h" |
| 34 #endif | 34 #endif |
| 35 | 35 |
| 36 using google::protobuf::RepeatedField; | 36 using google::protobuf::RepeatedField; |
| 37 using google::protobuf::RepeatedPtrField; | 37 using google::protobuf::RepeatedPtrField; |
| (...skipping 1308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1346 // First cut: typed count, visit count, recency. | 1346 // First cut: typed count, visit count, recency. |
| 1347 // TODO(mrossetti): This is too simplistic. Consider an approach which ranks | 1347 // TODO(mrossetti): This is too simplistic. Consider an approach which ranks |
| 1348 // recently visited (within the last 12/24 hours) as highly important. Get | 1348 // recently visited (within the last 12/24 hours) as highly important. Get |
| 1349 // input from mpearson. | 1349 // input from mpearson. |
| 1350 if (r1.typed_count() != r2.typed_count()) | 1350 if (r1.typed_count() != r2.typed_count()) |
| 1351 return (r1.typed_count() > r2.typed_count()); | 1351 return (r1.typed_count() > r2.typed_count()); |
| 1352 if (r1.visit_count() != r2.visit_count()) | 1352 if (r1.visit_count() != r2.visit_count()) |
| 1353 return (r1.visit_count() > r2.visit_count()); | 1353 return (r1.visit_count() > r2.visit_count()); |
| 1354 return (r1.last_visit() > r2.last_visit()); | 1354 return (r1.last_visit() > r2.last_visit()); |
| 1355 } | 1355 } |
| OLD | NEW |