Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 module arc.mojom; | 5 module arc.mojom; |
| 6 | 6 |
| 7 import "app.mojom"; | 7 import "app.mojom"; |
| 8 import "audio.mojom"; | 8 import "audio.mojom"; |
| 9 import "auth.mojom"; | 9 import "auth.mojom"; |
| 10 import "bluetooth.mojom"; | 10 import "bluetooth.mojom"; |
| 11 import "clipboard.mojom"; | 11 import "clipboard.mojom"; |
| 12 import "crash_collector.mojom"; | 12 import "crash_collector.mojom"; |
| 13 import "ime.mojom"; | 13 import "ime.mojom"; |
| 14 import "intent_helper.mojom"; | 14 import "intent_helper.mojom"; |
| 15 import "metrics.mojom"; | 15 import "metrics.mojom"; |
| 16 import "net.mojom"; | 16 import "net.mojom"; |
| 17 import "notifications.mojom"; | 17 import "notifications.mojom"; |
| 18 import "obb_mounter.mojom"; | |
| 18 import "policy.mojom"; | 19 import "policy.mojom"; |
| 19 import "power.mojom"; | 20 import "power.mojom"; |
| 20 import "process.mojom"; | 21 import "process.mojom"; |
| 21 import "video.mojom"; | 22 import "video.mojom"; |
| 22 import "window_manager.mojom"; | 23 import "window_manager.mojom"; |
| 23 | 24 |
| 24 interface ArcBridgeHost { | 25 interface ArcBridgeHost { |
| 25 // Keep the entries alphabetical. In order to do so without breaking | 26 // Keep the entries alphabetical. In order to do so without breaking |
| 26 // compatibility with the ARC instance, explicitly assign each interface a | 27 // compatibility with the ARC instance, explicitly assign each interface a |
| 27 // unique ordinal. | 28 // unique ordinal. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 68 OnPowerInstanceReady@103(PowerInstance instance_ptr); | 69 OnPowerInstanceReady@103(PowerInstance instance_ptr); |
| 69 | 70 |
| 70 // Notifies Chrome that the ProcessInstance interface is ready. | 71 // Notifies Chrome that the ProcessInstance interface is ready. |
| 71 OnProcessInstanceReady@104(ProcessInstance instance_ptr); | 72 OnProcessInstanceReady@104(ProcessInstance instance_ptr); |
| 72 | 73 |
| 73 // Notifies Chrome that the VideoInstance interface is ready. | 74 // Notifies Chrome that the VideoInstance interface is ready. |
| 74 [MinVersion=6] OnVideoInstanceReady@107(VideoInstance instance_ptr); | 75 [MinVersion=6] OnVideoInstanceReady@107(VideoInstance instance_ptr); |
| 75 | 76 |
| 76 // Notifies Android of entering / exiting TouchView. | 77 // Notifies Android of entering / exiting TouchView. |
| 77 [MinVersion=11] OnWindowManagerInstanceReady@117(WindowManagerInstance instanc e_ptr); | 78 [MinVersion=11] OnWindowManagerInstanceReady@117(WindowManagerInstance instanc e_ptr); |
| 79 | |
| 80 // Notifies Chrome that the ObbMounter interface is ready. | |
| 81 [MinVersion=12] OnObbMounterInstanceReady@118(ObbMounterInstance instance_ptr) ; | |
|
hidehiko
2016/05/20 14:15:46
ID looks conflicting. Could you rebase?
hashimoto
2016/05/23 04:46:47
Done.
| |
| 78 }; | 82 }; |
| 79 | 83 |
| 80 interface ArcBridgeInstance { | 84 interface ArcBridgeInstance { |
| 81 // Establishes full-duplex communication with the host. | 85 // Establishes full-duplex communication with the host. |
| 82 // |host_ptr| is the MessagePipe endpoint that is bound to the | 86 // |host_ptr| is the MessagePipe endpoint that is bound to the |
| 83 // ArcBridgeHostPtr binding. | 87 // ArcBridgeHostPtr binding. |
| 84 Init@0(ArcBridgeHost host_ptr); | 88 Init@0(ArcBridgeHost host_ptr); |
| 85 }; | 89 }; |
| OLD | NEW |