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

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

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

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

* commit 'b5141a9f':
  fix one NPE when webChromeClient don't have progress view support
parents 75612e9c b5141a9f
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;
    }
}