Index: components/arc/common/settings.mojom |
diff --git a/components/arc/common/settings.mojom b/components/arc/common/settings.mojom |
new file mode 100644 |
index 0000000000000000000000000000000000000000..579f70003308280d065a4d9bd37fbe88962909aa |
--- /dev/null |
+++ b/components/arc/common/settings.mojom |
@@ -0,0 +1,19 @@ |
+// 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. |
+ |
+module arc; |
+ |
+interface SettingsInstance { |
+ // Send an Android broadcast message to the Android package and class |
+ // specified. Data can be sent as extras by including a JSON map string which |
+ // will be automatically converted to a bundle accessible by the receiver. |
+ // |
+ // Note: Broadcasts can only be sent to whitelisted packages. Packages can be |
+ // added to the whitelist in ArcBridgeService.java in the Android source. |
+ SendBroadcast(string action, |
+ string package, |
+ string cls, |
+ string extras); |
+}; |
+ |