1package com.android.internal.view;
2
3import android.view.InputQueue;
4import android.view.SurfaceHolder;
5
6/** hahahah */
7public interface RootViewSurfaceTaker {
8    SurfaceHolder.Callback2 willYouTakeTheSurface();
9    void setSurfaceType(int type);
10    void setSurfaceFormat(int format);
11    void setSurfaceKeepScreenOn(boolean keepOn);
12    InputQueue.Callback willYouTakeTheInputQueue();
13}
14