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

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

Issue 1451353002: Implement GpuArcVideoService for arc video accelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 5 years 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 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);
};

Powered by Google App Engine
This is Rietveld 408576698