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

Unified Diff: content/browser/background_sync/background_sync.proto

Issue 950343006: [BackgroundSync] Initial land of the BackgroundSyncManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CONTENT_EXPORT for nested classes Created 5 years, 9 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/browser/background_sync/background_sync.proto
diff --git a/content/browser/background_sync/background_sync.proto b/content/browser/background_sync/background_sync.proto
new file mode 100644
index 0000000000000000000000000000000000000000..46cc136d0286aac4cab5b29619f1dcc2a70eacb8
--- /dev/null
+++ b/content/browser/background_sync/background_sync.proto
@@ -0,0 +1,20 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+
+package content;
+
+message BackgroundSyncRegistrationProto {
+ required int64 id = 1;
+ required string name = 2;
+ optional int64 min_period = 3;
+}
+
+message BackgroundSyncRegistrationsProto {
+ repeated BackgroundSyncRegistrationProto registration = 1;
+ required int64 next_registration_id = 2;
+}
« no previous file with comments | « content/browser/background_sync/PRESUBMIT.py ('k') | content/browser/background_sync/background_sync_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698