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

Unified Diff: components/arc/common/arc_bridge.mojom

Issue 1495723004: Minimum implementation of ARC clipboard Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tryboy warnings 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: components/arc/common/arc_bridge.mojom
diff --git a/components/arc/common/arc_bridge.mojom b/components/arc/common/arc_bridge.mojom
index af98bb1bee3a629026111de63436e2cca84febde..c78bc20e7ee01535890a853ba1d6204e0c13dade 100644
--- a/components/arc/common/arc_bridge.mojom
+++ b/components/arc/common/arc_bridge.mojom
@@ -5,6 +5,7 @@
module arc;
import "app.mojom";
+import "clipboard.mojom";
import "input.mojom";
import "notifications.mojom";
import "power.mojom";
@@ -19,6 +20,9 @@ interface ArcBridgeHost {
// Notifies Chrome that the AppInstance interface is ready.
OnAppInstanceReady@100(AppInstance instance_ptr);
+ // Notifies Chrome that the ClipboardInstance interface is ready.
+ [MinVersion=1] OnClipboardInstanceReady@109(ClipboardInstance instance_ptr);
Luis Héctor Chávez 2016/01/07 17:04:54 FYI another change went in. Bump to MinVersion=2.
cnwan 2016/01/08 06:51:46 Done. Also sync the Android side mojom file at ht
+
// Notifies Chrome that the InputInstnace interface is ready.
OnInputInstanceReady@101(InputInstance instance_ptr);

Powered by Google App Engine
This is Rietveld 408576698