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

Unified Diff: content/public/common/background_sync.mojom

Issue 1614063002: [BackgroundSync Cleanup] Remove periodic sync code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@purge_power
Patch Set: Address comments from PS3 Created 4 years, 11 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: content/public/common/background_sync.mojom
diff --git a/content/public/common/background_sync.mojom b/content/public/common/background_sync.mojom
index 6fc547feefdf0123ed5ddd9d1abc0e537e4d9eea..969e0b6b5de19df1b7081e8d1936a41ebf9d43c3 100644
--- a/content/public/common/background_sync.mojom
+++ b/content/public/common/background_sync.mojom
@@ -11,16 +11,8 @@ enum BackgroundSyncNetworkState {
MAX=ONLINE
};
-enum BackgroundSyncPeriodicity {
- PERIODIC,
- ONE_SHOT,
- MAX=ONE_SHOT
-};
-
struct SyncRegistration {
int64 handle_id = -1;
- BackgroundSyncPeriodicity periodicity = ONE_SHOT;
string tag = "";
- uint64 min_period_ms = 0;
BackgroundSyncNetworkState network_state = ONLINE;
};

Powered by Google App Engine
This is Rietveld 408576698