Make USB permissions work in the new permission message system
[chromium-blink-merge.git] / content / browser / background_sync / background_sync.proto
blobeb9b4ad229b1f1880bafe9fdc9a42b2f11d8ba08
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 syntax = "proto2";
7 option optimize_for = LITE_RUNTIME;
9 package content;
11 enum SyncNetworkState {
12   NETWORK_STATE_ANY = 0;
13   NETWORK_STATE_AVOID_CELLULAR = 1;
14   NETWORK_STATE_ONLINE = 2;
17 enum SyncPowerState {
18   POWER_STATE_AUTO = 0;
19   POWER_STATE_AVOID_DRAINING = 1;
22 enum SyncPeriodicity {
23   SYNC_PERIODIC = 0;
24   SYNC_ONE_SHOT = 1;
27 enum SyncState {
28   SYNC_STATE_PENDING = 0;
29   SYNC_STATE_FIRING = 1;
30   SYNC_STATE_FAILED = 2;
33 message BackgroundSyncRegistrationProto {
34   required int64 id = 1;
35   required string tag = 2;
36   required SyncPeriodicity periodicity = 3;
37   required int64 min_period = 4;
38   required SyncNetworkState network_state = 5;
39   required SyncPowerState power_state = 6;
40   required SyncState sync_state = 7;
43 message BackgroundSyncRegistrationsProto {
44   repeated BackgroundSyncRegistrationProto registration = 1;
45   required int64 next_registration_id = 2;
46   required string origin = 3;