Home | History | Annotate | Download | only in WebCoreSupport

Lines Matching refs:poster

273         // Send the poster
290 // - only downscale the poster, never upscale
291 // - maintain the natural aspect ratio of the poster
292 // - the poster should be centered in the target rect
302 void onPosterFetched(SkBitmap* poster)
304 m_poster = poster;
309 // of the poster. That will be overriden when onPrepare comes.
310 // In case of an error, we should report the poster size, rather
312 m_naturalSize = IntSize(poster->width(), poster->height());
396 // Send the poster
400 // Sending a NULL jUrl allows the Java side to try to load the default poster.
594 static void OnPosterFetched(JNIEnv* env, jobject obj, jobject poster, int pointer)
596 if (!pointer || !poster)
600 SkBitmap* posterNative = GraphicsJNI::getNativeBitmap(env, poster);