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

Commit 48a096e4 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: 408c9f88

* commit '408c9f88':
  webview: canInvokeDrawGlFunctor should always return true

Change-Id: Ic6f749e96b092476f30f85597da08fb12253a72a
parents 4413af13 408c9f88
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;
    }

    /**