| 169 | } |
| 170 | |
| 171 | void WindowCore::rootViewDisposed() |
| 172 | { |
| 173 | // this may be called by the garbage collector, so it might be |
| 174 | // in an arbitrary thread |
| 175 | |
| 176 | std::unique_lock lock(_rootViewMutex); |
| 177 | |
| 178 | _weakRootViewRef = bdn::java::WeakReference(); |
| 179 | } |
| 180 | |
| 181 | void WindowCore::rootViewSizeChanged(int width, int height) |
| 182 | { |
no test coverage detected