(int width, int height)
| 49 | } |
| 50 | |
| 51 | @Override |
| 52 | public Window setWindowSize(int width, int height) { |
| 53 | assert _onUIThread() : "Should be run on UI thread"; |
| 54 | _nSetWindowSize(width, height); |
| 55 | return this; |
| 56 | } |
| 57 | |
| 58 | @Override |
| 59 | public Window setContentSize(int width, int height) { |
nothing calls this directly
no test coverage detected