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