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

Side by Side Diff: media/base/android/java/src/org/chromium/media/IDialogSurfaceManager.aidl

Issue 1967553002: DO NOT COMMIT - DialogSurface initial implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added check for gpu process for dialog surface manager. Created 4 years, 6 months 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.media;
6
7 import org.chromium.media.IDialogSurfaceCallback;
8 import org.chromium.media.IDialogSurfaceController;
9
10 interface IDialogSurfaceManager {
11 /**
12 * Create a DialogSurfaceController with the given parameters. Once
13 * created, you must wait for a callback telling you that the surface is
14 * ready for use.
15 *
16 * @param callback object to receive callbacks about the surface.
17 * @param x Initial position in compositor (not screen) coordinates.
18 * @param y Initial position in compositor (not screen) coordinates.
19 * @param width Initial width in pixels.
20 * @param height Initial height in pixels.
21 */
22 IDialogSurfaceController createSurface(IDialogSurfaceCallback callback, int x, int y, int width, int height);
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698