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

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

Issue 1996933002: arc: IPC definition of file system interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 4 years, 7 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
« no previous file with comments | « components/arc/arc_bridge_service.cc ('k') | components/arc/common/file_system.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/common/arc_bridge.mojom
diff --git a/components/arc/common/arc_bridge.mojom b/components/arc/common/arc_bridge.mojom
index 37f67794a195d6649b9640c5d4f12f389fad60f4..d717878531e0c2a00ac5cf17e1c75b722d306e6c 100644
--- a/components/arc/common/arc_bridge.mojom
+++ b/components/arc/common/arc_bridge.mojom
@@ -10,6 +10,7 @@ import "auth.mojom";
import "bluetooth.mojom";
import "clipboard.mojom";
import "crash_collector.mojom";
+import "file_system.mojom";
import "ime.mojom";
import "intent_helper.mojom";
import "metrics.mojom";
@@ -22,9 +23,9 @@ import "storage_manager.mojom";
import "video.mojom";
import "window_manager.mojom";
-// Next MinVersion: 13
+// Next MinVersion: 14
// Deprecated method IDs: 101, 105
-// Next method ID: 119
+// Next method ID: 120
interface ArcBridgeHost {
// Keep the entries alphabetical. In order to do so without breaking
// compatibility with the ARC instance, explicitly assign each interface a
@@ -49,6 +50,10 @@ interface ArcBridgeHost {
[MinVersion=7] OnCrashCollectorInstanceReady@112(
CrashCollectorInstance instance_ptr);
+ // Notifies Chrome that the FileSystemInstance interface is ready.
+ [MinVersion=13] OnFileSystemInstanceReady@119(
+ FileSystemInstance instance_ptr);
+
// Notifies Chrome that the ImeInstance interface is ready.
[MinVersion=3] OnImeInstanceReady@110(ImeInstance instance_ptr);
@@ -79,7 +84,7 @@ interface ArcBridgeHost {
// Notifies Chrome that the VideoInstance interface is ready.
[MinVersion=6] OnVideoInstanceReady@107(VideoInstance instance_ptr);
-
+
// Notifies Android of entering / exiting TouchView.
[MinVersion=11] OnWindowManagerInstanceReady@117(WindowManagerInstance instance_ptr);
};
« no previous file with comments | « components/arc/arc_bridge_service.cc ('k') | components/arc/common/file_system.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698