summaryrefslogtreecommitdiff
path: root/chromium/components/arc/common/backup_settings.mojom
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/arc/common/backup_settings.mojom')
-rw-r--r--chromium/components/arc/common/backup_settings.mojom16
1 files changed, 16 insertions, 0 deletions
diff --git a/chromium/components/arc/common/backup_settings.mojom b/chromium/components/arc/common/backup_settings.mojom
new file mode 100644
index 00000000000..4ebb2ce2e09
--- /dev/null
+++ b/chromium/components/arc/common/backup_settings.mojom
@@ -0,0 +1,16 @@
+// Copyright 2017 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.
+//
+// Next MinVersion: 1
+
+module arc.mojom;
+
+// Controls the setting entries for the ARC backup and restore feature.
+// Next method ID: 1
+interface BackupSettingsInstance {
+ // Enables or disables the backup feature as specified by the |enabled|
+ // parameter. The |managed| parameter indicates whether or not this setting
+ // is managed by the enterprise policy.
+ SetBackupEnabled@0(bool enabled, bool managed);
+};