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

Unified Diff: components/visitedlink/test/visitedlink_perftest.cc

Issue 23985006: base: Split logging functions and PerfTimeLogger out of perftimer.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix visitedlink Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: components/visitedlink/test/visitedlink_perftest.cc
diff --git a/components/visitedlink/test/visitedlink_perftest.cc b/components/visitedlink/test/visitedlink_perftest.cc
index dfc254ffb9a6f0f6419ad4be5568097959ebfbcf..afa14ea320d8bdaa90f4d2fba17085203393dd48 100644
--- a/components/visitedlink/test/visitedlink_perftest.cc
+++ b/components/visitedlink/test/visitedlink_perftest.cc
@@ -10,6 +10,8 @@
#include "base/files/file_path.h"
#include "base/memory/shared_memory.h"
#include "base/strings/stringprintf.h"
+#include "base/test/perf_log.h"
+#include "base/test/perf_time_logger.h"
#include "base/test/perftimer.h"
#include "base/test/test_file_util.h"
#include "components/visitedlink/browser/visitedlink_master.h"
@@ -83,7 +85,7 @@ TEST_F(VisitedLink, TestAddAndQuery) {
NULL, true, true, db_path_, 0);
ASSERT_TRUE(master.Init());
- PerfTimeLogger timer("Visited_link_add_and_query");
+ base::PerfTimeLogger timer("Visited_link_add_and_query");
// first check without anything in the table
CheckVisited(master, added_prefix, 0, add_count);
@@ -108,13 +110,13 @@ TEST_F(VisitedLink, TestAddAndQuery) {
TEST_F(VisitedLink, TestLoad) {
// create a big DB
{
- PerfTimeLogger table_initialization_timer("Table_initialization");
+ base::PerfTimeLogger table_initialization_timer("Table_initialization");
VisitedLinkMaster master(new DummyVisitedLinkEventListener(),
NULL, true, true, db_path_, 0);
// time init with empty table
- PerfTimeLogger initTimer("Empty_visited_link_init");
+ base::PerfTimeLogger initTimer("Empty_visited_link_init");
bool success = master.Init();
initTimer.Done();
ASSERT_TRUE(success);
@@ -126,7 +128,7 @@ TEST_F(VisitedLink, TestLoad) {
FillTable(master, added_prefix, 0, load_test_add_count);
// time writing the file out out
- PerfTimeLogger flushTimer("Visited_link_database_flush");
+ base::PerfTimeLogger flushTimer("Visited_link_database_flush");
master.RewriteFile();
// TODO(maruel): Without calling FlushFileBuffers(master.file_); you don't
// know really how much time it took to write the file.
@@ -190,10 +192,10 @@ TEST_F(VisitedLink, TestLoad) {
cold_sum += cold_load_times[i];
hot_sum += hot_load_times[i];
}
- LogPerfResult("Visited_link_cold_load_time",
- cold_sum / cold_load_times.size(), "ms");
- LogPerfResult("Visited_link_hot_load_time",
- hot_sum / hot_load_times.size(), "ms");
+ base::LogPerfResult(
+ "Visited_link_cold_load_time", cold_sum / cold_load_times.size(), "ms");
+ base::LogPerfResult(
+ "Visited_link_hot_load_time", hot_sum / hot_load_times.size(), "ms");
}
} // namespace visitedlink
« no previous file with comments | « chrome_frame/test/perf/silverlight.cc ('k') | content/browser/net/sqlite_persistent_cookie_store_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698