| 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/history_quick_provider.h" | 5 #include "chrome/browser/autocomplete/history_quick_provider.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <functional> | 8 #include <functional> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/message_loop.h" | 14 #include "base/message_loop.h" |
| 15 #include "base/utf_string_conversions.h" | 15 #include "base/utf_string_conversions.h" |
| 16 #include "chrome/browser/autocomplete/autocomplete.h" | 16 #include "chrome/browser/autocomplete/autocomplete.h" |
| 17 #include "chrome/browser/autocomplete/autocomplete_match.h" | 17 #include "chrome/browser/autocomplete/autocomplete_match.h" |
| 18 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" | 18 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" |
| 19 #include "chrome/browser/autocomplete/autocomplete_result.h" |
| 19 #include "chrome/browser/history/history.h" | 20 #include "chrome/browser/history/history.h" |
| 20 #include "chrome/browser/history/history_service_factory.h" | 21 #include "chrome/browser/history/history_service_factory.h" |
| 21 #include "chrome/browser/history/in_memory_url_index.h" | 22 #include "chrome/browser/history/in_memory_url_index.h" |
| 22 #include "chrome/browser/history/url_database.h" | 23 #include "chrome/browser/history/url_database.h" |
| 23 #include "chrome/browser/history/url_index_private_data.h" | 24 #include "chrome/browser/history/url_index_private_data.h" |
| 24 #include "chrome/browser/prefs/pref_service.h" | 25 #include "chrome/browser/prefs/pref_service.h" |
| 25 #include "chrome/common/pref_names.h" | 26 #include "chrome/common/pref_names.h" |
| 26 #include "chrome/test/base/testing_browser_process.h" | 27 #include "chrome/test/base/testing_browser_process.h" |
| 27 #include "chrome/test/base/testing_profile.h" | 28 #include "chrome/test/base/testing_profile.h" |
| 28 #include "content/public/test/test_browser_thread.h" | 29 #include "content/public/test/test_browser_thread.h" |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 | 493 |
| 493 TEST_F(HQPOrderingTest, TEAMatch) { | 494 TEST_F(HQPOrderingTest, TEAMatch) { |
| 494 std::vector<std::string> expected_urls; | 495 std::vector<std::string> expected_urls; |
| 495 expected_urls.push_back("http://www.teamliquid.net/"); | 496 expected_urls.push_back("http://www.teamliquid.net/"); |
| 496 expected_urls.push_back("http://www.teamliquid.net/tlpd"); | 497 expected_urls.push_back("http://www.teamliquid.net/tlpd"); |
| 497 expected_urls.push_back("http://www.teamliquid.net/tlpd/korean/players"); | 498 expected_urls.push_back("http://www.teamliquid.net/tlpd/korean/players"); |
| 498 RunTest(ASCIIToUTF16("tea"), expected_urls, true, | 499 RunTest(ASCIIToUTF16("tea"), expected_urls, true, |
| 499 ASCIIToUTF16("www.teamliquid.net")); | 500 ASCIIToUTF16("www.teamliquid.net")); |
| 500 } | 501 } |
| 501 | 502 |
| OLD | NEW |