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

Unified Diff: chrome/test/live_sync/performance/typed_urls_sync_perf_test.cc

Issue 7605012: Sync performance tests: include datatype in trace label for performance graphs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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
« no previous file with comments | « chrome/test/live_sync/performance/sessions_sync_perf_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/live_sync/performance/typed_urls_sync_perf_test.cc
diff --git a/chrome/test/live_sync/performance/typed_urls_sync_perf_test.cc b/chrome/test/live_sync/performance/typed_urls_sync_perf_test.cc
index f6073a91f2c756929b8f6ff51afa5c5120a6c99a..d2a71629d3f2db6df27f34106c3e5f62374a6c7b 100644
--- a/chrome/test/live_sync/performance/typed_urls_sync_perf_test.cc
+++ b/chrome/test/live_sync/performance/typed_urls_sync_perf_test.cc
@@ -105,19 +105,19 @@ IN_PROC_BROWSER_TEST_F(TypedUrlsSyncPerfTest, P0) {
base::TimeDelta dt =
SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(kNumUrls, GetURLCount(1));
- SyncTimingHelper::PrintResult("typed_urls", "add", dt);
+ SyncTimingHelper::PrintResult("typed_urls", "add_typed_urls", dt);
// TCM ID - 7981755.
UpdateURLs(0);
dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(kNumUrls, GetURLCount(1));
- SyncTimingHelper::PrintResult("typed_urls", "update", dt);
+ SyncTimingHelper::PrintResult("typed_urls", "update_typed_urls", dt);
// TCM ID - 7651271.
RemoveURLs(0);
dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(0, GetURLCount(1));
- SyncTimingHelper::PrintResult("typed_urls", "delete", dt);
+ SyncTimingHelper::PrintResult("typed_urls", "delete_typed_urls", dt);
}
IN_PROC_BROWSER_TEST_F(TypedUrlsSyncPerfTest, DISABLED_Benchmark) {
« no previous file with comments | « chrome/test/live_sync/performance/sessions_sync_perf_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698