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

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: addressed Luis's comments 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 b2e00606e7ea1ca5ad7636ac5d63bec4541f91c9..421f65e7198bcd3ce6a7fbbb0aebe8dc5245af3f 100644
--- a/components/arc/common/arc_bridge.mojom
+++ b/components/arc/common/arc_bridge.mojom
@@ -4,6 +4,8 @@
module arc;
+import "video.mojom";
+
// Describes the boot phase of the ARC instance, as defined by AOSP in
// com.android.server.SystemService
enum InstanceBootPhase {
@@ -223,6 +225,10 @@ interface ArcBridgeHost {
// Notifies Chrome that the ARC process list has been updated.
OnUpdateProcessList(array<RunningAppProcessInfo> processes);
+
+ // Notifies Chrome that the VideoInstance interface is ready.
+ // TODO(kcwu) add @index when rebasing with arc_bridge refactoring.
+ OnVideoInstanceReady(VideoInstance instance_ptr);
Luis Héctor Chávez 2015/12/23 00:02:53 OnVideoInstanceReady@107.
kcwu 2015/12/23 01:05:23 Done.
};
interface ArcBridgeInstance {

Powered by Google App Engine
This is Rietveld 408576698