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

Commit 408c9f88 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

* commit '79ec0824':
  webview: canInvokeDrawGlFunctor should always return true

Change-Id: I48e1dbb8d8890917b6695552ff7fb0ab6f6c1686
parents 53405ffa 79ec0824
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;
    }

    /**