summaryrefslogtreecommitdiffstats
path: root/android_webview
diff options
context:
space:
mode:
authorwatk <watk@chromium.org>2016-01-19 21:11:03 -0800
committerCommit bot <commit-bot@chromium.org>2016-01-20 05:13:16 +0000
commit14faf0d9c2d90929b089bf90367ab2a36dfc707c (patch)
treee553374412d7d501b9a92074bf868c06b0d19e6b /android_webview
parent1624ad1b62af5efad5454dd604f7fab5bd7f67ea (diff)
downloadchromium_src-14faf0d9c2d90929b089bf90367ab2a36dfc707c.zip
chromium_src-14faf0d9c2d90929b089bf90367ab2a36dfc707c.tar.gz
chromium_src-14faf0d9c2d90929b089bf90367ab2a36dfc707c.tar.bz2
Rename ContentVideoViewClient to ContentVideoViewEmbedder
There are no behavioral changes in this CL. Now that there's a native ContentVideoView::Client it's confusing to have a java "client" interface as well. "Embedder" or "Container" describe the purpose of the interface. BUG=579215, 533630 Review URL: https://codereview.chromium.org/1601103009 Cr-Commit-Position: refs/heads/master@{#370308}
Diffstat (limited to 'android_webview')
-rw-r--r--android_webview/java/src/org/chromium/android_webview/AwContentViewClient.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContentViewClient.java b/android_webview/java/src/org/chromium/android_webview/AwContentViewClient.java
index 34515e3..3fec3c8 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwContentViewClient.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwContentViewClient.java
@@ -12,13 +12,13 @@ import android.webkit.URLUtil;
import android.webkit.WebChromeClient;
import android.widget.FrameLayout;
-import org.chromium.content.browser.ContentVideoViewClient;
+import org.chromium.content.browser.ContentVideoViewEmbedder;
import org.chromium.content.browser.ContentViewClient;
/**
* ContentViewClient implementation for WebView
*/
-public class AwContentViewClient extends ContentViewClient implements ContentVideoViewClient {
+public class AwContentViewClient extends ContentViewClient implements ContentVideoViewEmbedder {
private final AwContentsClient mAwContentsClient;
private final AwSettings mAwSettings;
private final AwContents mAwContents;
@@ -63,7 +63,7 @@ public class AwContentViewClient extends ContentViewClient implements ContentVid
}
@Override
- public final ContentVideoViewClient getContentVideoViewClient() {
+ public final ContentVideoViewEmbedder getContentVideoViewEmbedder() {
return this;
}