| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/basictypes.h" | 5 #include "base/macros.h" |
| 6 #include "base/strings/stringprintf.h" | 6 #include "base/strings/stringprintf.h" |
| 7 #include "chrome/browser/sync/test/integration/performance/sync_timing_helper.h" | 7 #include "chrome/browser/sync/test/integration/performance/sync_timing_helper.h" |
| 8 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" | 8 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" |
| 9 #include "chrome/browser/sync/test/integration/sync_test.h" | 9 #include "chrome/browser/sync/test/integration/sync_test.h" |
| 10 #include "chrome/browser/sync/test/integration/typed_urls_helper.h" | 10 #include "chrome/browser/sync/test/integration/typed_urls_helper.h" |
| 11 #include "sync/sessions/sync_session_context.h" | 11 #include "sync/sessions/sync_session_context.h" |
| 12 | 12 |
| 13 using typed_urls_helper::AddUrlToHistory; | 13 using typed_urls_helper::AddUrlToHistory; |
| 14 using typed_urls_helper::DeleteUrlsFromHistory; | 14 using typed_urls_helper::DeleteUrlsFromHistory; |
| 15 using typed_urls_helper::GetTypedUrlsFromClient; | 15 using typed_urls_helper::GetTypedUrlsFromClient; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1)); | 108 dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1)); |
| 109 ASSERT_EQ(kNumUrls, GetURLCount(1)); | 109 ASSERT_EQ(kNumUrls, GetURLCount(1)); |
| 110 SyncTimingHelper::PrintResult("typed_urls", "update_typed_urls", dt); | 110 SyncTimingHelper::PrintResult("typed_urls", "update_typed_urls", dt); |
| 111 | 111 |
| 112 // TCM ID - 7651271. | 112 // TCM ID - 7651271. |
| 113 RemoveURLs(0); | 113 RemoveURLs(0); |
| 114 dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1)); | 114 dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1)); |
| 115 ASSERT_EQ(0, GetURLCount(1)); | 115 ASSERT_EQ(0, GetURLCount(1)); |
| 116 SyncTimingHelper::PrintResult("typed_urls", "delete_typed_urls", dt); | 116 SyncTimingHelper::PrintResult("typed_urls", "delete_typed_urls", dt); |
| 117 } | 117 } |
| OLD | NEW |