| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/prefs/pref_service.h" | 21 #include "chrome/browser/prefs/pref_service.h" |
| 22 #include "chrome/common/pref_names.h" | 22 #include "chrome/common/pref_names.h" |
| 23 #include "chrome/test/base/testing_browser_process.h" |
| 24 #include "chrome/test/base/testing_browser_process_test.h" |
| 23 #include "chrome/test/base/testing_profile.h" | 25 #include "chrome/test/base/testing_profile.h" |
| 24 #include "chrome/test/testing_browser_process.h" | |
| 25 #include "chrome/test/testing_browser_process_test.h" | |
| 26 #include "content/browser/browser_thread.h" | 26 #include "content/browser/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 struct TestURLInfo { | 32 struct TestURLInfo { |
| 33 std::string url; | 33 std::string url; |
| 34 std::string title; | 34 std::string title; |
| 35 int visit_count; | 35 int visit_count; |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 HistoryQuickProvider::kMaxNonInliningScore - 1); | 422 HistoryQuickProvider::kMaxNonInliningScore - 1); |
| 423 EXPECT_EQ(next_score, HistoryQuickProvider::kMaxNonInliningScore - 2); | 423 EXPECT_EQ(next_score, HistoryQuickProvider::kMaxNonInliningScore - 2); |
| 424 | 424 |
| 425 // Low score, can inline, not clamped. | 425 // Low score, can inline, not clamped. |
| 426 next_score = 1500; | 426 next_score = 1500; |
| 427 match.raw_score = 500; | 427 match.raw_score = 500; |
| 428 match.can_inline = true; | 428 match.can_inline = true; |
| 429 EXPECT_EQ(HistoryQuickProvider::CalculateRelevance(match, &next_score), 500); | 429 EXPECT_EQ(HistoryQuickProvider::CalculateRelevance(match, &next_score), 500); |
| 430 EXPECT_EQ(next_score, 499); | 430 EXPECT_EQ(next_score, 499); |
| 431 } | 431 } |
| OLD | NEW |