IDisplayManager.aidl revision 7d00affce6e25b22fd8fc135933b3bf6b547a0dc
1/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.hardware.display;
18
19import android.hardware.display.IDisplayManagerCallback;
20import android.hardware.display.WifiDisplay;
21import android.hardware.display.WifiDisplayStatus;
22import android.view.DisplayInfo;
23import android.view.Surface;
24
25/** @hide */
26interface IDisplayManager {
27    DisplayInfo getDisplayInfo(int displayId);
28    int[] getDisplayIds();
29
30    void registerCallback(in IDisplayManagerCallback callback);
31
32    // No permissions required.
33    void scanWifiDisplays();
34
35    // Requires CONFIGURE_WIFI_DISPLAY permission to connect to an unknown device.
36    // No permissions required to connect to a known device.
37    void connectWifiDisplay(String address);
38
39    // No permissions required.
40    void disconnectWifiDisplay();
41
42    // Requires CONFIGURE_WIFI_DISPLAY permission.
43    void renameWifiDisplay(String address, String alias);
44
45    // Requires CONFIGURE_WIFI_DISPLAY permission.
46    void forgetWifiDisplay(String address);
47
48    // No permissions required.
49    WifiDisplayStatus getWifiDisplayStatus();
50
51    // Requires CAPTURE_VIDEO_OUTPUT or CAPTURE_SECURE_VIDEO_OUTPUT for certain
52    // combinations of flags.
53    int createVirtualDisplay(IBinder token, String packageName,
54            String name, int width, int height, int densityDpi, in Surface surface, int flags);
55
56    // No permissions required but must be same Uid as the creator.
57    void releaseVirtualDisplay(in IBinder token);
58}
59