blob: 0410c9024dcba7b4f627898a18b0d60bf751222c [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/* //device/java/android/android/view/IWindowSession.aidl
2**
3** Copyright 2006, The Android Open Source Project
4**
Vishnu Nairf7645aa2019-06-18 11:14:01 -07005** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008**
Vishnu Nairf7645aa2019-06-18 11:14:01 -07009** http://www.apache.org/licenses/LICENSE-2.0
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010**
Vishnu Nairf7645aa2019-06-18 11:14:01 -070011** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Andrii Kulian44607962017-03-16 11:06:24 -070014** See the License for the specific language governing permissions and
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080015** limitations under the License.
16*/
17
18package android.view;
19
Christopher Tatea53146c2010-09-07 11:57:52 -070020import android.content.ClipData;
Valerie Hau30360552020-01-14 16:12:01 -080021import android.graphics.Point;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.graphics.Rect;
23import android.graphics.Region;
Dianne Hackborn75804932009-10-20 20:15:20 -070024import android.os.Bundle;
Andrii Kulian44607962017-03-16 11:06:24 -070025import android.util.MergedConfiguration;
Adrian Roos5c6b6222017-11-07 17:36:10 +010026import android.view.DisplayCutout;
Jeff Brown46b9ac02010-04-22 18:58:52 -070027import android.view.InputChannel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.view.IWindow;
Dianne Hackborne3f23a32013-03-01 13:25:35 -080029import android.view.IWindowId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.view.MotionEvent;
31import android.view.WindowManager;
Tiger Huang0426a332020-03-29 01:17:08 +080032import android.view.InsetsSourceControl;
Jorim Jaggif96c90a2018-09-26 16:55:15 +020033import android.view.InsetsState;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034import android.view.Surface;
Daichi Hironoa1fb9be2017-12-18 17:02:54 +090035import android.view.SurfaceControl;
Vishnu Nair676cdb32019-09-12 09:27:43 -070036import android.view.SurfaceControl.Transaction;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037
Adrian Roos4ffc8972019-02-07 20:45:11 +010038import java.util.List;
39
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040/**
41 * System private per-application interface to the window manager.
42 *
43 * {@hide}
44 */
45interface IWindowSession {
Craig Mautner6881a102012-07-27 13:04:51 -070046 int addToDisplay(IWindow window, int seq, in WindowManager.LayoutParams attrs,
Adrian Roos9e370f22018-03-06 18:19:45 +010047 in int viewVisibility, in int layerStackId, out Rect outFrame,
Jorim Jaggif081f062019-10-24 16:24:54 +020048 out Rect outContentInsets, out Rect outStableInsets,
Jorim Jaggif96c90a2018-09-26 16:55:15 +020049 out DisplayCutout.ParcelableWrapper displayCutout, out InputChannel outInputChannel,
Tiger Huang0426a332020-03-29 01:17:08 +080050 out InsetsState insetsState, out InsetsSourceControl[] activeControls);
wilsonshihd0fc2ca2020-03-18 22:41:55 +080051 int addToDisplayAsUser(IWindow window, int seq, in WindowManager.LayoutParams attrs,
52 in int viewVisibility, in int layerStackId, in int userId,
53 out Rect outFrame, out Rect outContentInsets, out Rect outStableInsets,
54 out DisplayCutout.ParcelableWrapper displayCutout, out InputChannel outInputChannel,
55 out InsetsState insetsState, out InsetsSourceControl[] activeControls);
Craig Mautner6881a102012-07-27 13:04:51 -070056 int addToDisplayWithoutInputChannel(IWindow window, int seq, in WindowManager.LayoutParams attrs,
Adrian Roos37d7a682014-11-06 18:15:16 +010057 in int viewVisibility, in int layerStackId, out Rect outContentInsets,
Jorim Jaggif96c90a2018-09-26 16:55:15 +020058 out Rect outStableInsets, out InsetsState insetsState);
Andrei Oneaf4fb6fb2019-02-27 14:46:52 +000059 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060 void remove(IWindow window);
Svetoslavf7174e82014-06-12 11:29:35 -070061
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062 /**
63 * Change the parameters of a window. You supply the
64 * new parameters, it returns the new frame of the window on screen (the
65 * position should be ignored) and surface of the window. The surface
66 * will be invalid if the window is currently hidden, else you can use it
67 * to draw the window's contents.
Vishnu Nairf7645aa2019-06-18 11:14:01 -070068 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069 * @param window The window being modified.
Dianne Hackborn9a230e02011-10-06 11:51:27 -070070 * @param seq Ordering sequence number.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071 * @param attrs If non-null, new attributes to apply to the window.
72 * @param requestedWidth The width the window wants to be.
73 * @param requestedHeight The height the window wants to be.
74 * @param viewVisibility Window root view's visibility.
Jeff Brown98365d72012-08-19 20:30:52 -070075 * @param flags Request flags: {@link WindowManagerGlobal#RELAYOUT_INSETS_PENDING},
76 * {@link WindowManagerGlobal#RELAYOUT_DEFER_SURFACE_DESTROY}.
chaviwbe43ac82018-04-04 15:14:49 -070077 * @param frameNumber A frame number in which changes requested in this layout will be rendered.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078 * @param outFrame Rect in which is placed the new position/size on
79 * screen.
80 * @param outContentInsets Rect in which is placed the offsets from
81 * <var>outFrame</var> in which the content of the window should be
82 * placed. This can be used to modify the window layout to ensure its
83 * contents are visible to the user, taking into account system windows
84 * like the status bar or a soft keyboard.
85 * @param outVisibleInsets Rect in which is placed the offsets from
86 * <var>outFrame</var> in which the window is actually completely visible
87 * to the user. This can be used to temporarily scroll the window's
88 * contents to make sure the user can see it. This is different than
89 * <var>outContentInsets</var> in that these insets change transiently,
90 * so complex relayout of the window should not happen based on them.
Filip Gruszczynski2217f612015-05-26 11:32:08 -070091 * @param outOutsets Rect in which is placed the dead area of the screen that we would like to
92 * treat as real display. Example of such area is a chin in some models of wearable devices.
Jorim Jaggi2e95a482016-01-14 17:36:55 -080093 * @param outBackdropFrame Rect which is used draw the resizing background during a resize
94 * operation.
Andrii Kulian44607962017-03-16 11:06:24 -070095 * @param outMergedConfiguration New config container that holds global, override and merged
96 * config for window, if it is now becoming visible and the merged configuration has changed
97 * since it was last displayed.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098 * @param outSurface Object in which is placed the new display surface.
Jorim Jaggif96c90a2018-09-26 16:55:15 +020099 * @param insetsState The current insets state in the system.
Valerie Hau30360552020-01-14 16:12:01 -0800100 * @param outSurfaceSize The width and height of the surface control
Robert Carr2e20bcd2020-01-22 13:32:38 -0800101 * @param outBlastSurfaceControl A BLAST SurfaceControl allocated by the WindowManager
102 * the SurfaceControl willl be managed by the client side, but the WindowManager
103 * may use it as a deferTransaction barrier.
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700104 *
Jeff Brown98365d72012-08-19 20:30:52 -0700105 * @return int Result flags: {@link WindowManagerGlobal#RELAYOUT_SHOW_FOCUS},
106 * {@link WindowManagerGlobal#RELAYOUT_FIRST_TIME}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107 */
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700108 int relayout(IWindow window, int seq, in WindowManager.LayoutParams attrs,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 int requestedWidth, int requestedHeight, int viewVisibility,
Jorim Jaggif081f062019-10-24 16:24:54 +0200110 int flags, long frameNumber, out Rect outFrame,
Adrian Roosfa104232014-06-20 16:10:14 -0700111 out Rect outContentInsets, out Rect outVisibleInsets, out Rect outStableInsets,
Jorim Jaggif081f062019-10-24 16:24:54 +0200112 out Rect outBackdropFrame,
Adrian Roos5c6b6222017-11-07 17:36:10 +0100113 out DisplayCutout.ParcelableWrapper displayCutout,
Robert Carr5fea55b2018-12-10 13:05:52 -0800114 out MergedConfiguration outMergedConfiguration, out SurfaceControl outSurfaceControl,
Tiger Huang0426a332020-03-29 01:17:08 +0800115 out InsetsState insetsState, out InsetsSourceControl[] activeControls,
116 out Point outSurfaceSize, out SurfaceControl outBlastSurfaceControl);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117
Robert Carr23fa16b2016-01-13 13:19:58 -0800118 /*
119 * Notify the window manager that an application is relaunching and
Robert Carr77bdfb52016-05-02 18:18:31 -0700120 * windows should be prepared for replacement.
Robert Carr23fa16b2016-01-13 13:19:58 -0800121 *
122 * @param appToken The application
Robert Carr77bdfb52016-05-02 18:18:31 -0700123 * @param childrenOnly Whether to only prepare child windows for replacement
124 * (for example when main windows are being reused via preservation).
Robert Carr23fa16b2016-01-13 13:19:58 -0800125 */
Robert Carr77bdfb52016-05-02 18:18:31 -0700126 void prepareToReplaceWindows(IBinder appToken, boolean childrenOnly);
Robert Carr23fa16b2016-01-13 13:19:58 -0800127
Rob Carr64e516f2015-10-29 00:20:45 +0000128 /**
Dianne Hackborn64825172011-03-02 21:32:58 -0800129 * Called by a client to report that it ran out of graphics memory.
130 */
131 boolean outOfMemory(IWindow window);
132
133 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 * Give the window manager a hint of the part of the window that is
135 * completely transparent, allowing it to work with the surface flinger
136 * to optimize compositing of this part of the window.
137 */
Andrei Oneaf4fb6fb2019-02-27 14:46:52 +0000138 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 void setTransparentRegion(IWindow window, in Region region);
Svetoslavf7174e82014-06-12 11:29:35 -0700140
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 /**
142 * Tell the window manager about the content and visible insets of the
143 * given window, which can be used to adjust the <var>outContentInsets</var>
144 * and <var>outVisibleInsets</var> values returned by
145 * {@link #relayout relayout()} for windows behind this one.
146 *
147 * @param touchableInsets Controls which part of the window inside of its
148 * frame can receive pointer events, as defined by
149 * {@link android.view.ViewTreeObserver.InternalInsetsInfo}.
150 */
151 void setInsets(IWindow window, int touchableInsets, in Rect contentInsets,
Jeff Brownfbf09772011-01-16 14:06:57 -0800152 in Rect visibleInsets, in Region touchableRegion);
Svetoslavf7174e82014-06-12 11:29:35 -0700153
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 /**
155 * Return the current display size in which the window is being laid out,
156 * accounting for screen decorations around it.
157 */
158 void getDisplayFrame(IWindow window, out Rect outDisplayFrame);
Svetoslavf7174e82014-06-12 11:29:35 -0700159
Vishnu Nairf7645aa2019-06-18 11:14:01 -0700160 /**
161 * Called when the client has finished drawing the surface, if needed.
162 *
163 * @param postDrawTransaction transaction filled by the client that can be
164 * used to synchronize any post draw transactions with the server. Transaction
165 * is null if there is no sync required.
166 */
Andrei Oneaf4fb6fb2019-02-27 14:46:52 +0000167 @UnsupportedAppUsage
Vishnu Nair676cdb32019-09-12 09:27:43 -0700168 void finishDrawing(IWindow window, in SurfaceControl.Transaction postDrawTransaction);
Svetoslavf7174e82014-06-12 11:29:35 -0700169
Andrei Oneaf4fb6fb2019-02-27 14:46:52 +0000170 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 void setInTouchMode(boolean showFocus);
Andrei Oneaf4fb6fb2019-02-27 14:46:52 +0000172 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800173 boolean getInTouchMode();
Svetoslavf7174e82014-06-12 11:29:35 -0700174
Andrei Oneaf4fb6fb2019-02-27 14:46:52 +0000175 @UnsupportedAppUsage
Arthur Hunga4c52062019-02-19 11:31:44 +0800176 boolean performHapticFeedback(int effectId, boolean always);
Svetoslavf7174e82014-06-12 11:29:35 -0700177
Dianne Hackbornc8a0a752009-08-10 23:05:49 -0700178 /**
Christopher Tatea53146c2010-09-07 11:57:52 -0700179 * Initiate the drag operation itself
Daichi Hironofabca092017-12-19 15:02:50 +0900180 *
181 * @param window Window which initiates drag operation.
182 * @param flags See {@code View#startDragAndDrop}
183 * @param surface Surface containing drag shadow image
184 * @param touchSource See {@code InputDevice#getSource()}
Daichi Hirono1456b922018-01-24 15:37:26 +0900185 * @param touchX X coordinate of last touch point
186 * @param touchY Y coordinate of last touch point
Daichi Hironofabca092017-12-19 15:02:50 +0900187 * @param thumbCenterX X coordinate for the position within the shadow image that should be
188 * underneath the touch point during the drag and drop operation.
189 * @param thumbCenterY Y coordinate for the position within the shadow image that should be
190 * underneath the touch point during the drag and drop operation.
191 * @param data Data transferred by drag and drop
192 * @return Token of drag operation which will be passed to cancelDragAndDrop.
Christopher Tatea53146c2010-09-07 11:57:52 -0700193 */
Andrei Oneaf4fb6fb2019-02-27 14:46:52 +0000194 @UnsupportedAppUsage
Daichi Hironofabca092017-12-19 15:02:50 +0900195 IBinder performDrag(IWindow window, int flags, in SurfaceControl surface, int touchSource,
Vladislav Kaznacheevba761122016-01-22 12:09:45 -0800196 float touchX, float touchY, float thumbCenterX, float thumbCenterY, in ClipData data);
Christopher Tatea53146c2010-09-07 11:57:52 -0700197
Daichi Hironoa1fb9be2017-12-18 17:02:54 +0900198 /**
Svetoslavf7174e82014-06-12 11:29:35 -0700199 * Report the result of a drop action targeted to the given window.
200 * consumed is 'true' when the drop was accepted by a valid recipient,
201 * 'false' otherwise.
202 */
Daichi Hironoa1fb9be2017-12-18 17:02:54 +0900203 void reportDropResult(IWindow window, boolean consumed);
Chris Tated4533f12010-10-19 15:15:08 -0700204
Christopher Tatea53146c2010-09-07 11:57:52 -0700205 /**
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800206 * Cancel the current drag operation.
Daichi Hirono3e9d5102019-04-15 15:58:11 +0900207 * skipAnimation is 'true' when it should skip the drag cancel animation which brings the drag
208 * shadow image back to the drag start position.
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800209 */
Daichi Hirono3e9d5102019-04-15 15:58:11 +0900210 void cancelDragAndDrop(IBinder dragToken, boolean skipAnimation);
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800211
212 /**
Christopher Tatea53146c2010-09-07 11:57:52 -0700213 * Tell the OS that we've just dragged into a View that is willing to accept the drop
214 */
215 void dragRecipientEntered(IWindow window);
216
217 /**
218 * Tell the OS that we've just dragged *off* of a View that was willing to accept the drop
219 */
220 void dragRecipientExited(IWindow window);
221
222 /**
Dianne Hackbornc8a0a752009-08-10 23:05:49 -0700223 * For windows with the wallpaper behind them, and the wallpaper is
224 * larger than the screen, set the offset within the screen.
Marco Nelissenbf6956b2009-11-09 15:21:13 -0800225 * For multi screen launcher type applications, xstep and ystep indicate
226 * how big the increment is from one screen to another.
Dianne Hackbornc8a0a752009-08-10 23:05:49 -0700227 */
Santiago Etchebehere9548fd32020-04-17 10:16:25 -0700228 oneway void setWallpaperPosition(IBinder windowToken, float x, float y, float xstep, float ystep);
Svetoslavf7174e82014-06-12 11:29:35 -0700229
Lucas Dupin13f4b8a2020-02-19 13:41:52 -0800230 /**
231 * For wallpaper windows, sets the scale of the wallpaper based on
232 * SystemUI behavior.
233 */
Santiago Etchebehere9548fd32020-04-17 10:16:25 -0700234 oneway void setWallpaperZoomOut(IBinder windowToken, float scale);
Lucas Dupin13f4b8a2020-02-19 13:41:52 -0800235
236 /**
237 * For wallpaper windows, sets whether the wallpaper should actually be
238 * scaled when setWallpaperZoomOut is called. If set to false, the WallpaperService will
239 * receive the zoom out value but the surface won't be scaled.
240 */
241 void setShouldZoomOutWallpaper(IBinder windowToken, boolean shouldZoom);
242
Andrei Oneaf4fb6fb2019-02-27 14:46:52 +0000243 @UnsupportedAppUsage
Dianne Hackborn19382ac2009-09-11 21:13:37 -0700244 void wallpaperOffsetsComplete(IBinder window);
Svetoslavf7174e82014-06-12 11:29:35 -0700245
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700246 /**
247 * Apply a raw offset to the wallpaper service when shown behind this window.
248 */
249 void setWallpaperDisplayOffset(IBinder windowToken, int x, int y);
250
Dianne Hackborn75804932009-10-20 20:15:20 -0700251 Bundle sendWallpaperCommand(IBinder window, String action, int x, int y,
252 int z, in Bundle extras, boolean sync);
Svetoslavf7174e82014-06-12 11:29:35 -0700253
Andrei Oneaf4fb6fb2019-02-27 14:46:52 +0000254 @UnsupportedAppUsage
Dianne Hackborn75804932009-10-20 20:15:20 -0700255 void wallpaperCommandComplete(IBinder window, in Bundle result);
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -0700256
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -0700257 /**
258 * Notifies that a rectangle on the screen has been requested.
259 */
Svetoslavf7174e82014-06-12 11:29:35 -0700260 void onRectangleOnScreenRequested(IBinder token, in Rect rectangle);
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800261
262 IWindowId getWindowId(IBinder window);
Jeff Brownc2932a12014-11-20 18:04:05 -0800263
264 /**
265 * When the system is dozing in a low-power partially suspended state, pokes a short
266 * lived wake lock and ensures that the display is ready to accept the next frame
267 * of content drawn in the window.
268 *
269 * This mechanism is bound to the window rather than to the display manager or the
270 * power manager so that the system can ensure that the window is actually visible
271 * and prevent runaway applications from draining the battery. This is similar to how
272 * FLAG_KEEP_SCREEN_ON works.
273 *
274 * This method is synchronous because it may need to acquire a wake lock before returning.
275 * The assumption is that this method will be called rather infrequently.
276 */
277 void pokeDrawLock(IBinder window);
Chong Zhang8e89b312015-09-09 15:09:30 -0700278
279 /**
280 * Starts a task window move with {startX, startY} as starting point. The amount of move
281 * will be the offset between {startX, startY} and the new cursor position.
282 *
283 * Returns true if the move started successfully; false otherwise.
284 */
285 boolean startMovingTask(IWindow window, float startX, float startY);
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -0800286
yj81.kwon19585ff2019-04-23 18:53:57 -0700287 void finishMovingTask(IWindow window);
288
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -0800289 void updatePointerIcon(IWindow window);
Andrii Kulian4b6599e2018-01-15 17:24:08 -0800290
291 /**
Tiger Huangd8ec9382019-04-18 14:35:09 -0700292 * Reparent the top layers for a display to the requested SurfaceControl. The display that is
293 * going to be re-parented (the displayId passed in) needs to have been created by the same
294 * process that is requesting the re-parent. This is to ensure clients can't just re-parent
295 * display content info to any SurfaceControl, as this would be a security issue.
296 *
297 * @param window The window which owns the SurfaceControl. This indicates the z-order of the
298 * windows of this display against the windows on the parent display.
299 * @param sc The SurfaceControl that the top level layers for the display should be re-parented
300 * to.
301 * @param displayId The id of the display to be re-parented.
302 */
303 void reparentDisplayContent(IWindow window, in SurfaceControl sc, int displayId);
304
305 /**
306 * Update the location of a child display in its parent window. This enables windows in the
307 * child display to compute the global transformation matrix.
308 *
309 * @param window The parent window of the display.
310 * @param x The x coordinate in the parent window.
311 * @param y The y coordinate in the parent window.
312 * @param displayId The id of the display to be notified.
313 */
314 void updateDisplayContentLocation(IWindow window, int x, int y, int displayId);
315
316 /**
Tiger Huang2b210c22019-03-18 21:21:26 +0800317 * Update a tap exclude region identified by provided id in the window. Touches on this region
318 * will neither be dispatched to this window nor change the focus to this window. Passing an
319 * invalid region will remove the area from the exclude region of this window.
Andrii Kulian4b6599e2018-01-15 17:24:08 -0800320 */
chaviwaa0d74e2019-12-26 14:13:40 -0800321 void updateTapExcludeRegion(IWindow window, in Region region);
Jorim Jaggie35c0592018-11-06 16:21:08 +0100322
323 /**
324 * Called when the client has changed the local insets state, and now the server should reflect
325 * that new state.
326 */
Jorim Jaggi22488d32020-03-19 01:12:44 +0100327 oneway void insetsModified(IWindow window, in InsetsState state);
Adrian Roos4ffc8972019-02-07 20:45:11 +0100328
329 /**
330 * Called when the system gesture exclusion has changed.
331 */
Adrian Roos2dccd142019-07-16 18:35:15 +0200332 oneway void reportSystemGestureExclusionChanged(IWindow window, in List<Rect> exclusionRects);
Robert Carr9d431e12018-12-17 13:11:48 -0800333
334 /**
335 * Request the server to call setInputWindowInfo on a given Surface, and return
336 * an input channel where the client can receive input.
337 */
Vishnu Nair5cf253192019-11-07 15:33:20 -0800338 void grantInputChannel(int displayId, in SurfaceControl surface, in IWindow window,
arthurhungd3f17d72020-05-08 17:20:38 +0800339 in IBinder hostInputToken, int flags, int type, out InputChannel outInputChannel);
Evan Rosky680377e2020-01-10 19:12:10 -0800340
341 /**
342 * Update the flags on an input channel associated with a particular surface.
343 */
344 void updateInputChannel(in IBinder channelToken, int displayId, in SurfaceControl surface,
Evan Rosky12837282020-04-27 19:12:25 -0700345 int flags, in Region region);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800346}