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

Unified Diff: chrome/test/live_sync/performance/bookmarks_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 | « no previous file | chrome/test/live_sync/performance/extensions_sync_perf_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/live_sync/performance/bookmarks_sync_perf_test.cc
diff --git a/chrome/test/live_sync/performance/bookmarks_sync_perf_test.cc b/chrome/test/live_sync/performance/bookmarks_sync_perf_test.cc
index 764a4c2cd74f9ba678de3c99d91eefbb8fb6ed50..3e3bf57280b81a8ec49b1cf496dae8f60f81a59c 100644
--- a/chrome/test/live_sync/performance/bookmarks_sync_perf_test.cc
+++ b/chrome/test/live_sync/performance/bookmarks_sync_perf_test.cc
@@ -110,19 +110,19 @@ IN_PROC_BROWSER_TEST_F(BookmarksSyncPerfTest, P0) {
base::TimeDelta dt =
SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(kNumBookmarks, GetURLCount(1));
- SyncTimingHelper::PrintResult("bookmarks", "add", dt);
+ SyncTimingHelper::PrintResult("bookmarks", "add_bookmarks", dt);
// TCM ID - 7564762.
UpdateURLs(0);
dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(kNumBookmarks, GetURLCount(1));
- SyncTimingHelper::PrintResult("bookmarks", "update", dt);
+ SyncTimingHelper::PrintResult("bookmarks", "update_bookmarks", dt);
// TCM ID - 7566626.
RemoveURLs(0);
dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(0, GetURLCount(1));
- SyncTimingHelper::PrintResult("bookmarks", "delete", dt);
+ SyncTimingHelper::PrintResult("bookmarks", "delete_bookmarks", dt);
}
IN_PROC_BROWSER_TEST_F(BookmarksSyncPerfTest, DISABLED_Benchmark) {
« no previous file with comments | « no previous file | chrome/test/live_sync/performance/extensions_sync_perf_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698