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