Index: media/base/android/java/src/org/chromium/media/IDialogSurfaceManager.aidl |
diff --git a/media/base/android/java/src/org/chromium/media/IDialogSurfaceManager.aidl b/media/base/android/java/src/org/chromium/media/IDialogSurfaceManager.aidl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2f97e5a46b958044f124d2fe7ec36efff6cf4376 |
--- /dev/null |
+++ b/media/base/android/java/src/org/chromium/media/IDialogSurfaceManager.aidl |
@@ -0,0 +1,24 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package org.chromium.media; |
+ |
+import org.chromium.media.IDialogSurfaceCallback; |
+import org.chromium.media.IDialogSurfaceHolder; |
+ |
+interface IDialogSurfaceManager { |
+ /** |
+ * Create a DialogSurfaceHolder with the given parameters. |
+ * |
+ * @param frameToken Unguessable frame token of the frame ID that wants to |
+ * host the DialogSurface. |
+ * @param callback object to receive callbacks about the surface. |
+ * @param x Initial position in compositor (not screen) coordinates. |
+ * @param y Initial position in compositor (not screen) coordinates. |
+ * @param width Initial width in pixels. |
+ * @param height Initial height in pixels. |
+ */ |
+ IDialogSurfaceHolder createSurface(in UnguessableToken frameToken, |
+ IDialogSurfaceCallback callback, int x, int y, int width, int height); |
+} |