Home | History | Annotate | Download | only in webkit

Lines Matching refs:poster

84     // The poster image to be shown when the video is not playing.
87 // The poster downloader.
444 // The poster URL
448 // The poster bytes. We only touch this on the network thread.
519 Bitmap poster = BitmapFactory.decodeByteArray(
521 mProxy.doSetPoster(poster);
561 // Tears down the poster bytes stream. Called on network thread.
635 Bitmap poster = (Bitmap) msg.obj;
636 nativeOnPosterFetched(poster, mNativePointer);
652 private void doSetPoster(Bitmap poster) {
653 if (poster == null) {
657 mPoster = poster;
659 msg.obj = poster;
730 // Cancel any active poster download.
738 * Load the poster image.
739 * @param url is the URL of the poster image.
747 // Cancel any active poster download.
751 // Load the poster asynchronously
790 private native void nativeOnPosterFetched(Bitmap poster, int nativePointer);