Skip to content

Commit 39df578

Browse files
author
Craig Mautner
committed
Fix build.
Change-Id: I52bbebae38912a4fb71c96174b3d4d8eb6be10c1
1 parent f063fa0 commit 39df578

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindowSession.java

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,24 @@ public int add(IWindow arg0, int seq, LayoutParams arg1, int arg2, Rect arg3,
4545
}
4646

4747
@Override
48-
public int addWithoutInputChannel(IWindow arg0, int seq, LayoutParams arg1, int arg2, Rect arg3)
48+
public int addToDisplay(IWindow arg0, int seq, LayoutParams arg1, int arg2, int displayId,
49+
Rect arg3, InputChannel outInputchannel)
50+
throws RemoteException {
51+
// pass for now.
52+
return 0;
53+
}
54+
55+
@Override
56+
public int addWithoutInputChannel(IWindow arg0, int seq, LayoutParams arg1, int arg2,
57+
Rect arg3)
58+
throws RemoteException {
59+
// pass for now.
60+
return 0;
61+
}
62+
63+
@Override
64+
public int addToDisplayWithoutInputChannel(IWindow arg0, int seq, LayoutParams arg1, int arg2,
65+
int displayId, Rect arg3)
4966
throws RemoteException {
5067
// pass for now.
5168
return 0;

0 commit comments

Comments
 (0)