blob: 5e3e5e8e7d42e11a5d2ecb32e14664d1f5d74423 [file] [log] [blame]
Wale Ogunwaledec34082020-03-22 09:45:00 -07001/*
2 * Copyright (C) 2020 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.window;
18
chaviwd1a23932020-04-20 17:53:10 -070019import android.window.DisplayAreaInfo;
chaviw7de50002020-04-27 12:33:30 -070020import android.view.SurfaceControl;
Wale Ogunwaledec34082020-03-22 09:45:00 -070021
22/**
23 * Interface for WindowManager to delegate control of display areas.
24 * {@hide}
25 */
26oneway interface IDisplayAreaOrganizer {
chaviw7de50002020-04-27 12:33:30 -070027 void onDisplayAreaAppeared(in DisplayAreaInfo displayAreaInfo, in SurfaceControl leash);
chaviwd1a23932020-04-20 17:53:10 -070028 void onDisplayAreaVanished(in DisplayAreaInfo displayAreaInfo);
chaviw9d07e622020-04-21 09:16:57 -070029 void onDisplayAreaInfoChanged(in DisplayAreaInfo displayAreaInfo);
Wale Ogunwaledec34082020-03-22 09:45:00 -070030}