Loading core/java/android/webkit/WebViewCore.java +7 −5 Original line number Diff line number Diff line Loading @@ -837,9 +837,11 @@ final class WebViewCore { case DESTROY: // Time to take down the world. Cancel all pending // loads and destroy the native view and frame. synchronized (WebViewCore.this) { mBrowserFrame.destroy(); mBrowserFrame = null; mNativeClass = 0; } break; case UPDATE_FRAME_CACHE_IF_LOADING: Loading Loading @@ -1623,11 +1625,11 @@ final class WebViewCore { } } /* package */ boolean pictureReady() { /* package */ synchronized boolean pictureReady() { return nativePictureReady(); } /*package*/ Picture copyContentPicture() { /*package*/ synchronized Picture copyContentPicture() { Picture result = new Picture(); nativeCopyContentToPicture(result); return result; Loading Loading
core/java/android/webkit/WebViewCore.java +7 −5 Original line number Diff line number Diff line Loading @@ -837,9 +837,11 @@ final class WebViewCore { case DESTROY: // Time to take down the world. Cancel all pending // loads and destroy the native view and frame. synchronized (WebViewCore.this) { mBrowserFrame.destroy(); mBrowserFrame = null; mNativeClass = 0; } break; case UPDATE_FRAME_CACHE_IF_LOADING: Loading Loading @@ -1623,11 +1625,11 @@ final class WebViewCore { } } /* package */ boolean pictureReady() { /* package */ synchronized boolean pictureReady() { return nativePictureReady(); } /*package*/ Picture copyContentPicture() { /*package*/ synchronized Picture copyContentPicture() { Picture result = new Picture(); nativeCopyContentToPicture(result); return result; Loading