1 package com.android.internal.view; 2 3 import android.view.InputQueue; 4 import android.view.SurfaceHolder; 5 6 /** hahahah */ 7 public 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