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

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

Issue 268673004: Move bookmarks' test support file to the bookmarks component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@367839
Patch Set: Remove duplicated dependency Created 6 years, 7 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/autocomplete_match.h" 19 #include "chrome/browser/autocomplete/autocomplete_match.h"
20 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" 20 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h"
21 #include "chrome/browser/autocomplete/autocomplete_result.h" 21 #include "chrome/browser/autocomplete/autocomplete_result.h"
22 #include "chrome/browser/autocomplete/history_url_provider.h" 22 #include "chrome/browser/autocomplete/history_url_provider.h"
23 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 23 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
24 #include "chrome/browser/bookmarks/bookmark_test_helpers.h"
25 #include "chrome/browser/history/history_backend.h" 24 #include "chrome/browser/history/history_backend.h"
26 #include "chrome/browser/history/history_database.h" 25 #include "chrome/browser/history/history_database.h"
27 #include "chrome/browser/history/history_service.h" 26 #include "chrome/browser/history/history_service.h"
28 #include "chrome/browser/history/history_service_factory.h" 27 #include "chrome/browser/history/history_service_factory.h"
29 #include "chrome/browser/history/in_memory_url_index.h" 28 #include "chrome/browser/history/in_memory_url_index.h"
30 #include "chrome/browser/history/url_database.h" 29 #include "chrome/browser/history/url_database.h"
31 #include "chrome/browser/history/url_index_private_data.h" 30 #include "chrome/browser/history/url_index_private_data.h"
32 #include "chrome/browser/search_engines/template_url.h" 31 #include "chrome/browser/search_engines/template_url.h"
33 #include "chrome/browser/search_engines/template_url_service.h" 32 #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"
37 #include "components/bookmarks/core/test/bookmark_test_helpers.h"
38 #include "content/public/test/test_browser_thread.h" 38 #include "content/public/test/test_browser_thread.h"
39 #include "sql/transaction.h" 39 #include "sql/transaction.h"
40 #include "testing/gtest/include/gtest/gtest.h" 40 #include "testing/gtest/include/gtest/gtest.h"
41 41
42 using base::ASCIIToUTF16; 42 using base::ASCIIToUTF16;
43 using base::Time; 43 using base::Time;
44 using base::TimeDelta; 44 using base::TimeDelta;
45 45
46 using content::BrowserThread; 46 using content::BrowserThread;
47 47
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 708
709 TEST_F(HQPOrderingTest, TEAMatch) { 709 TEST_F(HQPOrderingTest, TEAMatch) {
710 std::vector<std::string> expected_urls; 710 std::vector<std::string> expected_urls;
711 expected_urls.push_back("http://www.teamliquid.net/"); 711 expected_urls.push_back("http://www.teamliquid.net/");
712 expected_urls.push_back("http://www.teamliquid.net/tlpd"); 712 expected_urls.push_back("http://www.teamliquid.net/tlpd");
713 expected_urls.push_back("http://www.teamliquid.net/tlpd/korean/players"); 713 expected_urls.push_back("http://www.teamliquid.net/tlpd/korean/players");
714 RunTest(ASCIIToUTF16("tea"), false, expected_urls, true, 714 RunTest(ASCIIToUTF16("tea"), false, expected_urls, true,
715 ASCIIToUTF16("www.teamliquid.net"), 715 ASCIIToUTF16("www.teamliquid.net"),
716 ASCIIToUTF16("mliquid.net")); 716 ASCIIToUTF16("mliquid.net"));
717 } 717 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698