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 24 // Native mirror of ContentVideoView.java. This class is responsible for
28 class ContentVideoView {
30 // Construct a ContentVideoView object. The |manager| will handle all the
32 explicit ContentVideoView(BrowserMediaPlayerManager* manager);
34 ~ContentVideoView();
36 // To open another video on existing ContentVideoView.
43 static ContentVideoView* GetInstance();
83 // Return the corresponing ContentVideoView Java object if any.
87 // Creates the corresponding ContentVideoView Java object.
102 // could use another container to hold ContentVideoView, and the blocker i
    [all...]
content_video_view.cc 30 ContentVideoView* g_content_video_view = NULL;
41 bool ContentVideoView::RegisterContentVideoView(JNIEnv* env) {
45 ContentVideoView* ContentVideoView::GetInstance() {
49 ContentVideoView::ContentVideoView(
59 ContentVideoView::~ContentVideoView() {
71 void ContentVideoView::OpenVideo() {
80 void ContentVideoView::OnMediaPlayerError(int error_type)
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentVideoView.java 40 public class ContentVideoView extends FrameLayout
43 private static final String TAG = "ContentVideoView";
76 // Native pointer to C++ ContentVideoView object.
174 protected ContentVideoView(Context context, long nativeContentVideoView,
425 private static ContentVideoView createContentVideoView(
428 ContentVideoView videoView = new ContentVideoView(context, nativeContentVideoView, client);
494 public static ContentVideoView getContentVideoView() {
538 private static native ContentVideoView nativeGetSingletonJavaContentVideoView();

Completed in 1138 milliseconds