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/history/history.h" | 18 #include "chrome/browser/history/history.h" |
19 #include "chrome/browser/history/in_memory_url_index.h" | 19 #include "chrome/browser/history/in_memory_url_index.h" |
20 #include "chrome/browser/history/url_database.h" | 20 #include "chrome/browser/history/url_database.h" |
21 #include "chrome/browser/history/url_index_private_data.h" | 21 #include "chrome/browser/history/url_index_private_data.h" |
22 #include "chrome/browser/prefs/pref_service.h" | 22 #include "chrome/browser/prefs/pref_service.h" |
23 #include "chrome/common/pref_names.h" | 23 #include "chrome/common/pref_names.h" |
24 #include "chrome/test/base/testing_browser_process.h" | 24 #include "chrome/test/base/testing_browser_process.h" |
25 #include "chrome/test/base/testing_profile.h" | 25 #include "chrome/test/base/testing_profile.h" |
26 #include "content/test/test_browser_thread.h" | 26 #include "content/public/test/test_browser_thread.h" |
27 #include "testing/gtest/include/gtest/gtest.h" | 27 #include "testing/gtest/include/gtest/gtest.h" |
28 | 28 |
29 using base::Time; | 29 using base::Time; |
30 using base::TimeDelta; | 30 using base::TimeDelta; |
31 | 31 |
32 using content::BrowserThread; | 32 using content::BrowserThread; |
33 | 33 |
34 struct TestURLInfo { | 34 struct TestURLInfo { |
35 std::string url; | 35 std::string url; |
36 std::string title; | 36 std::string title; |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 | 488 |
489 TEST_F(HQPOrderingTest, TEAMatch) { | 489 TEST_F(HQPOrderingTest, TEAMatch) { |
490 std::vector<std::string> expected_urls; | 490 std::vector<std::string> expected_urls; |
491 expected_urls.push_back("http://www.teamliquid.net/"); | 491 expected_urls.push_back("http://www.teamliquid.net/"); |
492 expected_urls.push_back("http://www.teamliquid.net/tlpd"); | 492 expected_urls.push_back("http://www.teamliquid.net/tlpd"); |
493 expected_urls.push_back("http://www.teamliquid.net/tlpd/korean/players"); | 493 expected_urls.push_back("http://www.teamliquid.net/tlpd/korean/players"); |
494 RunTest(ASCIIToUTF16("tea"), expected_urls, true, | 494 RunTest(ASCIIToUTF16("tea"), expected_urls, true, |
495 ASCIIToUTF16("www.teamliquid.net")); | 495 ASCIIToUTF16("www.teamliquid.net")); |
496 } | 496 } |
497 | 497 |
OLD | NEW |