Merge "Fix build." into jb-mr2-dev

This commit is contained in:
Dianne Hackborn
2013-03-05 18:29:08 +00:00
committed by Android (Google) Code Review

View File

@@ -24,6 +24,7 @@ import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import android.view.IWindow;
import android.view.IWindowId;
import android.view.IWindowSession;
import android.view.InputChannel;
import android.view.Surface;
@@ -199,4 +200,10 @@ public final class BridgeWindowSession implements IWindowSession {
public void onRectangleOnScreenRequested(IBinder window, Rect rectangle, boolean immediate) {
// pass for now.
}
@Override
public IWindowId getWindowId(IBinder window) throws RemoteException {
// pass for now.
return null;
}
}