| Index: content/public/android/java/src/org/chromium/content/browser/ActivityContentVideoViewClient.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ActivityContentVideoViewDelegate.java b/content/public/android/java/src/org/chromium/content/browser/ActivityContentVideoViewClient.java
|
| similarity index 76%
|
| rename from content/public/android/java/src/org/chromium/content/browser/ActivityContentVideoViewDelegate.java
|
| rename to content/public/android/java/src/org/chromium/content/browser/ActivityContentVideoViewClient.java
|
| index 0af339311ebc7375c71ed1d1519896c4fe896966..029f7178cf4616a7d1213699f75b63b93bfb4087 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ActivityContentVideoViewDelegate.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ActivityContentVideoViewClient.java
|
| @@ -12,15 +12,15 @@ import android.view.ViewGroup;
|
| import android.view.WindowManager;
|
| import android.widget.FrameLayout;
|
|
|
| -import org.chromium.content.browser.ContentVideoViewContextDelegate;
|
| +import org.chromium.content.browser.ContentVideoViewClient;
|
|
|
| /**
|
| - * Uses an exisiting Activity to handle displaying video in full screen.
|
| + * Uses an existing Activity to handle displaying video in full screen.
|
| */
|
| -public class ActivityContentVideoViewDelegate implements ContentVideoViewContextDelegate {
|
| +public class ActivityContentVideoViewClient implements ContentVideoViewClient {
|
| private Activity mActivity;
|
|
|
| - public ActivityContentVideoViewDelegate(Activity activity) {
|
| + public ActivityContentVideoViewClient(Activity activity) {
|
| this.mActivity = activity;
|
| }
|
|
|
| @@ -43,11 +43,6 @@ public class ActivityContentVideoViewDelegate implements ContentVideoViewContext
|
| }
|
|
|
| @Override
|
| - public Context getContext() {
|
| - return mActivity;
|
| - }
|
| -
|
| - @Override
|
| public View getVideoLoadingProgressView() {
|
| return null;
|
| }
|
|
|