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

Commit b5141a9f authored by Teng-Hui Zhu's avatar Teng-Hui Zhu Committed by Android Git Automerger
Browse files

am 90bdb69b: Merge "fix one NPE when webChromeClient don\'t have progress view...

am 90bdb69b: Merge "fix one NPE when webChromeClient don\'t have progress view support" into honeycomb-mr2

* commit '90bdb69b':
  fix one NPE when webChromeClient don't have progress view support
parents 1ea549e8 90bdb69b
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -314,11 +314,13 @@ public class HTML5VideoFullScreen extends HTML5VideoView

    @Override
    protected void switchProgressView(boolean playerBuffering) {
        if (mProgressView != null) {
            if (playerBuffering) {
                mProgressView.setVisibility(View.VISIBLE);
            } else {
                mProgressView.setVisibility(View.GONE);
            }
        }
        return;
    }
}