Index: components/arc/common/arc_bridge.mojom |
diff --git a/components/arc/common/arc_bridge.mojom b/components/arc/common/arc_bridge.mojom |
index f555fbcc3d02d17bdacfe36548f9717bcc01f326..d21afae6328bdd0e80d13ab0e5155a426ef35e13 100644 |
--- a/components/arc/common/arc_bridge.mojom |
+++ b/components/arc/common/arc_bridge.mojom |
@@ -223,6 +223,9 @@ interface ArcBridgeHost { |
// Notifies Chrome that the ARC process list has been updated. |
OnUpdateProcessList(array<RunningAppProcessInfo> processes); |
+ |
+ // Notifies Chrome a request for ipc channel of video acceleration. |
+ OnRequestArcVideoAcceleratorChannel(); |
Luis Héctor Chávez
2015/12/16 16:37:22
Instead of adding methods directly to ArcBridge, c
kcwu
2015/12/22 11:58:25
Done.
Since your refactoring was reverted, I try t
|
}; |
interface ArcBridgeInstance { |
@@ -263,4 +266,7 @@ interface ArcBridgeInstance { |
// Requests ARC instance to return the current process list. |
RequestProcessList(); |
+ |
+ // Notify the ipc handle for video accelerator is created. |
+ NotifyVideoAcceleratorChannelCreated(handle channel_handle); |
}; |