HomeSort by relevance Sort by last modified time
    Searched defs:ContentVideoView (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/content/browser/android/
content_video_view.h 21 // Native mirror of ContentVideoView.java. This class is responsible for
25 class ContentVideoView {
27 // Construct a ContentVideoView object. The |manager| will handle all the
29 ContentVideoView(
34 ~ContentVideoView();
36 // To open another video on existing ContentVideoView.
42 // Return true if there is existing ContentVideoView object.
75 // Return the corresponing ContentVideoView Java object if any.
90 DISALLOW_COPY_AND_ASSIGN(ContentVideoView);
content_video_view.cc 23 ContentVideoView* g_content_video_view = NULL;
34 bool ContentVideoView::RegisterContentVideoView(JNIEnv* env) {
38 bool ContentVideoView::HasContentVideoView() {
42 ContentVideoView::ContentVideoView(
55 ContentVideoView::~ContentVideoView() {
61 void ContentVideoView::OpenVideo() {
68 void ContentVideoView::OnMediaPlayerError(int error_type) {
77 void ContentVideoView::OnVideoSizeChanged(int width, int height)
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentVideoView.java 39 public class ContentVideoView
44 private static final String TAG = "ContentVideoView";
82 // Native pointer to C++ ContentVideoView object.
208 private ContentVideoView(Context context, int nativeContentVideoView,
578 private static ContentVideoView createContentVideoView(
581 // The context needs be Activity to create the ContentVideoView correctly.
586 return new ContentVideoView(context, nativeContentVideoView, client);
631 public static ContentVideoView getContentVideoView() {
649 private static native ContentVideoView nativeGetSingletonJavaContentVideoView();

Completed in 188 milliseconds