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

Unified Diff: components/omnibox/browser/history_test_util.cc

Issue 2300323003: Adding performance tests for HQP that represent importance of optimising HistoryItemsForTerms method (Closed)
Patch Set: Review, round 4. Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/omnibox/browser/history_test_util.h ('k') | components/omnibox/browser/in_memory_url_index.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/omnibox/browser/history_test_util.cc
diff --git a/components/omnibox/browser/history_test_util.cc b/components/omnibox/browser/history_test_util.cc
new file mode 100644
index 0000000000000000000000000000000000000000..52fb21748103185aadcfb7c1dc64dbd7a2069298
--- /dev/null
+++ b/components/omnibox/browser/history_test_util.cc
@@ -0,0 +1,31 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/omnibox/browser/history_test_util.h"
+
+#include "base/time/time.h"
+#include "components/history/core/browser/history_database.h"
+
+namespace history {
+
+void AddFakeURLToHistoryDB(HistoryDatabase* history_db, const URLRow& url_row) {
+ base::Time visit_time = url_row.last_visit();
+ URLID url_id = history_db->AddURL(url_row);
+
+ auto AddVisit = [&](ui::PageTransition transition) mutable {
+ // Assume earlier visits are at one-day intervals.
+ visit_time -= base::TimeDelta::FromDays(1);
+ VisitRow row(url_id, visit_time, 0, transition, 1);
+ history_db->AddVisit(&row, SOURCE_BROWSED);
+ };
+
+ // Mark the most recent |test_info.typed_count| visits as typed.
+ for (int j = 0; j < url_row.typed_count(); ++j)
+ AddVisit(ui::PAGE_TRANSITION_TYPED);
+
+ for (int j = url_row.typed_count(); j < url_row.visit_count(); ++j)
+ AddVisit(ui::PAGE_TRANSITION_LINK);
+}
+
+} // namespace history
« no previous file with comments | « components/omnibox/browser/history_test_util.h ('k') | components/omnibox/browser/in_memory_url_index.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698