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

Unified Diff: chrome/browser/sync/test/integration/retry_verifier.h

Issue 2258873003: [Sync] Move sessions/ to engine/cycle/ and rename things to match. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments. Created 4 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
Index: chrome/browser/sync/test/integration/retry_verifier.h
diff --git a/chrome/browser/sync/test/integration/retry_verifier.h b/chrome/browser/sync/test/integration/retry_verifier.h
index e5ad0865168883204a48297eb8d3d8a9e834f711..ec75e991e44fe06cb39fba0c864e9bfbf10d81e8 100644
--- a/chrome/browser/sync/test/integration/retry_verifier.h
+++ b/chrome/browser/sync/test/integration/retry_verifier.h
@@ -11,9 +11,7 @@
#include "base/time/time.h"
namespace syncer {
-namespace sessions {
-class SyncSessionSnapshot;
-} // namespace sessions
+class SyncCycleSnapshot;
} // namespace syncer
// The minimum and maximum wait times for a retry. The actual retry would take
@@ -34,9 +32,8 @@ class RetryVerifier {
// Initialize with the current sync session snapshot. Using the snapshot
// we will figure out when the first retry sync happened.
- void Initialize(const syncer::sessions::SyncSessionSnapshot& snap);
- void VerifyRetryInterval(
- const syncer::sessions::SyncSessionSnapshot& snap);
+ void Initialize(const syncer::SyncCycleSnapshot& snap);
+ void VerifyRetryInterval(const syncer::SyncCycleSnapshot& snap);
bool done() const { return done_; }
bool Succeeded() const { return done() && success_; }

Powered by Google App Engine
This is Rietveld 408576698