Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Side by Side Diff: chrome/browser/autocomplete/history_quick_provider_unittest.cc

Issue 963823003: Move InMemoryURLIndex into chrome/browser/autocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shortcut-database
Patch Set: Fixing win_chromium_x64_rel_ng build Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/format_macros.h" 13 #include "base/format_macros.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/message_loop/message_loop.h" 15 #include "base/message_loop/message_loop.h"
16 #include "base/prefs/pref_service.h" 16 #include "base/prefs/pref_service.h"
17 #include "base/strings/stringprintf.h" 17 #include "base/strings/stringprintf.h"
18 #include "base/strings/utf_string_conversions.h" 18 #include "base/strings/utf_string_conversions.h"
19 #include "chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier.h" 19 #include "chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier.h"
20 #include "chrome/browser/autocomplete/history_url_provider.h" 20 #include "chrome/browser/autocomplete/history_url_provider.h"
21 #include "chrome/browser/autocomplete/in_memory_url_index.h"
22 #include "chrome/browser/autocomplete/url_index_private_data.h"
21 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 23 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
22 #include "chrome/browser/history/history_backend.h" 24 #include "chrome/browser/history/history_backend.h"
23 #include "chrome/browser/history/history_service.h" 25 #include "chrome/browser/history/history_service.h"
24 #include "chrome/browser/history/history_service_factory.h" 26 #include "chrome/browser/history/history_service_factory.h"
25 #include "chrome/browser/history/in_memory_url_index.h"
26 #include "chrome/browser/history/url_index_private_data.h"
27 #include "chrome/browser/search_engines/chrome_template_url_service_client.h" 27 #include "chrome/browser/search_engines/chrome_template_url_service_client.h"
28 #include "chrome/browser/search_engines/template_url_service_factory.h" 28 #include "chrome/browser/search_engines/template_url_service_factory.h"
29 #include "chrome/test/base/testing_browser_process.h" 29 #include "chrome/test/base/testing_browser_process.h"
30 #include "chrome/test/base/testing_profile.h" 30 #include "chrome/test/base/testing_profile.h"
31 #include "components/bookmarks/test/bookmark_test_helpers.h" 31 #include "components/bookmarks/test/bookmark_test_helpers.h"
32 #include "components/history/core/browser/history_database.h" 32 #include "components/history/core/browser/history_database.h"
33 #include "components/history/core/browser/history_service_observer.h" 33 #include "components/history/core/browser/history_service_observer.h"
34 #include "components/history/core/browser/url_database.h" 34 #include "components/history/core/browser/url_database.h"
35 #include "components/metrics/proto/omnibox_event.pb.h" 35 #include "components/metrics/proto/omnibox_event.pb.h"
36 #include "components/omnibox/autocomplete_match.h" 36 #include "components/omnibox/autocomplete_match.h"
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 824
825 TEST_F(HQPOrderingTest, TEAMatch) { 825 TEST_F(HQPOrderingTest, TEAMatch) {
826 std::vector<std::string> expected_urls; 826 std::vector<std::string> expected_urls;
827 expected_urls.push_back("http://www.teamliquid.net/"); 827 expected_urls.push_back("http://www.teamliquid.net/");
828 expected_urls.push_back("http://www.teamliquid.net/tlpd"); 828 expected_urls.push_back("http://www.teamliquid.net/tlpd");
829 expected_urls.push_back("http://www.teamliquid.net/tlpd/korean/players"); 829 expected_urls.push_back("http://www.teamliquid.net/tlpd/korean/players");
830 RunTest(ASCIIToUTF16("tea"), false, expected_urls, true, 830 RunTest(ASCIIToUTF16("tea"), false, expected_urls, true,
831 ASCIIToUTF16("www.teamliquid.net"), 831 ASCIIToUTF16("www.teamliquid.net"),
832 ASCIIToUTF16("mliquid.net")); 832 ASCIIToUTF16("mliquid.net"));
833 } 833 }
OLDNEW
« no previous file with comments | « chrome/browser/autocomplete/history_quick_provider.cc ('k') | chrome/browser/autocomplete/history_url_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698