Index: media/base/android/java/src/org/chromium/media/IDialogSurface.aidl |
diff --git a/media/base/android/java/src/org/chromium/media/IDialogSurface.aidl b/media/base/android/java/src/org/chromium/media/IDialogSurface.aidl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0b18eafc8a793514d517d2a84f353a05cad7cf36 |
--- /dev/null |
+++ b/media/base/android/java/src/org/chromium/media/IDialogSurface.aidl |
@@ -0,0 +1,19 @@ |
+// 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; |
+ |
+interface IDialogSurface { |
+ /** |
+ * Close the surface and clean up. This DialogSurface can't be re-used |
+ * after this, though additional calls to release() are okay. |
+ */ |
+ void release(); |
+ |
+ /** |
+ * Schedule an asynchronous layout of the surface. This will be ignored |
+ * if the client has not received an onCreated callback yet. |
+ */ |
+ void scheduleLayoutSurface(int x, int y, int width, int height); |
+} |