Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentVideoViewClient.java

Issue 141533006: [Android] Move the java content/ package to content_public/ to start the split. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small fixes and findbugs line update Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/android/java/src/org/chromium/content/browser/ContentVideoViewClient.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentVideoViewClient.java b/content/public/android/java/src/org/chromium/content/browser/ContentVideoViewClient.java
deleted file mode 100644
index 7991ff31c8d1f2a3eaf48682c28337f2bab4e37b..0000000000000000000000000000000000000000
--- a/content/public/android/java/src/org/chromium/content/browser/ContentVideoViewClient.java
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package org.chromium.content.browser;
-
-import android.view.View;
-
-/**
- * Main callback class used by ContentVideoView.
- *
- * This contains the superset of callbacks that must be implemented by the embedder.
- *
- * onShowCustomView and onDestoryContentVideoView must be implemented,
- * getVideoLoadingProgressView() is optional, and may return null if not required.
- *
- * The implementer is responsible for displaying the Android view when
- * {@link #onShowCustomView(View)} is called.
- */
-public interface ContentVideoViewClient {
- /**
- * Called when the video view is ready to be shown. Must be implemented.
- * @param view The view to show.
- */
- public void onShowCustomView(View view);
-
- /**
- * Called when it's time to destroy the video view. Must be implemented.
- */
- public void onDestroyContentVideoView();
-
- /**
- * Allows the embedder to replace the view indicating that the video is loading.
- * If null is returned, the default video loading view is used.
- */
- public View getVideoLoadingProgressView();
-}

Powered by Google App Engine
This is Rietveld 408576698