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

Commit 79ec0824 authored by Bo Liu's avatar Bo Liu Committed by Android (Google) Code Review
Browse files

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

parents 33e2fc48 439266bb
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;
    }

    /**