| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/history_url_provider.h" | 5 #include "chrome/browser/autocomplete/history_url_provider.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| 11 #include "base/histogram.h" | 11 #include "base/histogram.h" |
| 12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
| 13 #include "base/string_util.h" | 13 #include "base/string_util.h" |
| 14 #include "base/utf_string_conversions.h" | 14 #include "base/utf_string_conversions.h" |
| 15 #include "chrome/browser/history/history.h" | 15 #include "chrome/browser/history/history.h" |
| 16 #include "chrome/browser/history/history_backend.h" | 16 #include "chrome/browser/history/history_backend.h" |
| 17 #include "chrome/browser/history/history_database.h" | 17 #include "chrome/browser/history/history_database.h" |
| 18 #include "chrome/browser/net/url_fixer_upper.h" | 18 #include "chrome/browser/net/url_fixer_upper.h" |
| 19 #include "chrome/browser/pref_service.h" | 19 #include "chrome/browser/pref_service.h" |
| 20 #include "chrome/browser/profile.h" | 20 #include "chrome/browser/profile.h" |
| 21 #include "chrome/common/chrome_switches.h" | 21 #include "chrome/common/chrome_switches.h" |
| 22 #include "chrome/common/pref_names.h" | 22 #include "chrome/common/pref_names.h" |
| 23 #include "chrome/common/sqlite_utils.h" | |
| 24 #include "chrome/common/url_constants.h" | 23 #include "chrome/common/url_constants.h" |
| 25 #include "googleurl/src/gurl.h" | 24 #include "googleurl/src/gurl.h" |
| 26 #include "googleurl/src/url_parse.h" | 25 #include "googleurl/src/url_parse.h" |
| 27 #include "googleurl/src/url_util.h" | 26 #include "googleurl/src/url_util.h" |
| 28 #include "net/base/net_util.h" | 27 #include "net/base/net_util.h" |
| 29 | 28 |
| 30 using base::Time; | 29 using base::Time; |
| 31 using base::TimeDelta; | 30 using base::TimeDelta; |
| 32 using base::TimeTicks; | 31 using base::TimeTicks; |
| 33 | 32 |
| (...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 895 &match.contents_class); | 894 &match.contents_class); |
| 896 } | 895 } |
| 897 match.description = UTF16ToWide(info.title()); | 896 match.description = UTF16ToWide(info.title()); |
| 898 AutocompleteMatch::ClassifyMatchInString(params->input.text(), | 897 AutocompleteMatch::ClassifyMatchInString(params->input.text(), |
| 899 UTF16ToWide(info.title()), | 898 UTF16ToWide(info.title()), |
| 900 ACMatchClassification::NONE, | 899 ACMatchClassification::NONE, |
| 901 &match.description_class); | 900 &match.description_class); |
| 902 | 901 |
| 903 return match; | 902 return match; |
| 904 } | 903 } |
| OLD | NEW |