| 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> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "chrome/browser/autocomplete/history_url_provider.h" | 23 #include "chrome/browser/autocomplete/history_url_provider.h" |
| 24 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 24 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
| 25 #include "chrome/browser/chrome_notification_types.h" | 25 #include "chrome/browser/chrome_notification_types.h" |
| 26 #include "chrome/browser/history/history_backend.h" | 26 #include "chrome/browser/history/history_backend.h" |
| 27 #include "chrome/browser/history/history_database.h" | 27 #include "chrome/browser/history/history_database.h" |
| 28 #include "chrome/browser/history/history_service.h" | 28 #include "chrome/browser/history/history_service.h" |
| 29 #include "chrome/browser/history/history_service_factory.h" | 29 #include "chrome/browser/history/history_service_factory.h" |
| 30 #include "chrome/browser/history/in_memory_url_index.h" | 30 #include "chrome/browser/history/in_memory_url_index.h" |
| 31 #include "chrome/browser/history/url_index_private_data.h" | 31 #include "chrome/browser/history/url_index_private_data.h" |
| 32 #include "chrome/browser/search_engines/chrome_template_url_service_client.h" | 32 #include "chrome/browser/search_engines/chrome_template_url_service_client.h" |
| 33 #include "chrome/browser/search_engines/template_url_service.h" | |
| 34 #include "chrome/browser/search_engines/template_url_service_factory.h" | 33 #include "chrome/browser/search_engines/template_url_service_factory.h" |
| 35 #include "chrome/common/pref_names.h" | 34 #include "chrome/common/pref_names.h" |
| 36 #include "chrome/test/base/testing_browser_process.h" | 35 #include "chrome/test/base/testing_browser_process.h" |
| 37 #include "chrome/test/base/testing_profile.h" | 36 #include "chrome/test/base/testing_profile.h" |
| 38 #include "components/bookmarks/test/bookmark_test_helpers.h" | 37 #include "components/bookmarks/test/bookmark_test_helpers.h" |
| 39 #include "components/history/core/browser/url_database.h" | 38 #include "components/history/core/browser/url_database.h" |
| 40 #include "components/metrics/proto/omnibox_event.pb.h" | 39 #include "components/metrics/proto/omnibox_event.pb.h" |
| 41 #include "components/search_engines/search_terms_data.h" | 40 #include "components/search_engines/search_terms_data.h" |
| 42 #include "components/search_engines/template_url.h" | 41 #include "components/search_engines/template_url.h" |
| 42 #include "components/search_engines/template_url_service.h" |
| 43 #include "content/public/browser/notification_service.h" | 43 #include "content/public/browser/notification_service.h" |
| 44 #include "content/public/test/test_browser_thread.h" | 44 #include "content/public/test/test_browser_thread.h" |
| 45 #include "content/public/test/test_utils.h" | 45 #include "content/public/test/test_utils.h" |
| 46 #include "sql/transaction.h" | 46 #include "sql/transaction.h" |
| 47 #include "testing/gtest/include/gtest/gtest.h" | 47 #include "testing/gtest/include/gtest/gtest.h" |
| 48 | 48 |
| 49 using base::ASCIIToUTF16; | 49 using base::ASCIIToUTF16; |
| 50 using base::Time; | 50 using base::Time; |
| 51 using base::TimeDelta; | 51 using base::TimeDelta; |
| 52 | 52 |
| (...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 | 740 |
| 741 TEST_F(HQPOrderingTest, TEAMatch) { | 741 TEST_F(HQPOrderingTest, TEAMatch) { |
| 742 std::vector<std::string> expected_urls; | 742 std::vector<std::string> expected_urls; |
| 743 expected_urls.push_back("http://www.teamliquid.net/"); | 743 expected_urls.push_back("http://www.teamliquid.net/"); |
| 744 expected_urls.push_back("http://www.teamliquid.net/tlpd"); | 744 expected_urls.push_back("http://www.teamliquid.net/tlpd"); |
| 745 expected_urls.push_back("http://www.teamliquid.net/tlpd/korean/players"); | 745 expected_urls.push_back("http://www.teamliquid.net/tlpd/korean/players"); |
| 746 RunTest(ASCIIToUTF16("tea"), false, expected_urls, true, | 746 RunTest(ASCIIToUTF16("tea"), false, expected_urls, true, |
| 747 ASCIIToUTF16("www.teamliquid.net"), | 747 ASCIIToUTF16("www.teamliquid.net"), |
| 748 ASCIIToUTF16("mliquid.net")); | 748 ASCIIToUTF16("mliquid.net")); |
| 749 } | 749 } |
| OLD | NEW |