(int width, int height)
| 26 | } |
| 27 | |
| 28 | @Override |
| 29 | public void resize(int width, int height) { |
| 30 | assert _onUIThread() : "Should be run on UI thread"; |
| 31 | _width = width; |
| 32 | _height = height; |
| 33 | _nResize(width, height); |
| 34 | } |
| 35 | |
| 36 | @Override |
| 37 | public int getWidth() { |
nothing calls this directly
no test coverage detected