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

Commit ae6139f7 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...

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

* commit '4f085f39':
  webview: canInvokeDrawGlFunctor should always return true

Change-Id: Ieb52c20428b90a766e79db673d3497b9d902346c
parents 6f2541c1 4f085f39
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;
    }

    /**