Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f085f39 authored by Bo Liu's avatar Bo Liu Committed by android-build-merger
Browse files

Merge "webview: canInvokeDrawGlFunctor should always return true" into nyc-dev am: 79ec0824

am: 07901c7d

* commit '07901c7d':
  webview: canInvokeDrawGlFunctor should always return true

Change-Id: Ifd2079addbce0bc9366743d110f11d111daa10fb
parents c9e451af 07901c7d
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -74,9 +74,7 @@ public final class WebViewDelegate {
     * and false otherwise.
     */
    public boolean canInvokeDrawGlFunctor(View containerView) {
        ViewRootImpl viewRootImpl = containerView.getViewRootImpl();
         // viewRootImpl can be null during teardown when window is leaked.
        return viewRootImpl != null;
        return true;
    }

    /**