Home | History | Annotate | Download | only in webkit

Lines Matching refs:poster

80     // The poster image to be shown when the video is not playing.
83 // The poster downloader.
426 // The poster URL
430 // The poster bytes. We only touch this on the network thread.
497 Bitmap poster = BitmapFactory.decodeByteArray(
499 mProxy.doSetPoster(poster);
535 // Tears down the poster bytes stream. Called on network thread.
609 Bitmap poster = (Bitmap) msg.obj;
610 nativeOnPosterFetched(poster, mNativePointer);
626 private void doSetPoster(Bitmap poster) {
627 if (poster == null) {
631 mPoster = poster;
633 msg.obj = poster;
689 // Cancel any active poster download.
697 * Load the poster image.
698 * @param url is the URL of the poster image.
706 // Cancel any active poster download.
710 // Load the poster asynchronously
749 private native void nativeOnPosterFetched(Bitmap poster, int nativePointer);