diff options
author | watk <watk@chromium.org> | 2016-01-19 21:11:03 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-01-20 05:13:16 +0000 |
commit | 14faf0d9c2d90929b089bf90367ab2a36dfc707c (patch) | |
tree | e553374412d7d501b9a92074bf868c06b0d19e6b /chromecast | |
parent | 1624ad1b62af5efad5454dd604f7fab5bd7f67ea (diff) | |
download | chromium_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 'chromecast')
-rw-r--r-- | chromecast/browser/android/apk/src/org/chromium/chromecast/shell/CastShellActivity.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chromecast/browser/android/apk/src/org/chromium/chromecast/shell/CastShellActivity.java b/chromecast/browser/android/apk/src/org/chromium/chromecast/shell/CastShellActivity.java index f79b334..ec3b393 100644 --- a/chromecast/browser/android/apk/src/org/chromium/chromecast/shell/CastShellActivity.java +++ b/chromecast/browser/android/apk/src/org/chromium/chromecast/shell/CastShellActivity.java @@ -21,8 +21,8 @@ import android.widget.Toast; import org.chromium.base.CommandLine; import org.chromium.base.Log; -import org.chromium.content.browser.ActivityContentVideoViewClient; -import org.chromium.content.browser.ContentVideoViewClient; +import org.chromium.content.browser.ActivityContentVideoViewEmbedder; +import org.chromium.content.browser.ContentVideoViewEmbedder; import org.chromium.content.browser.ContentViewClient; import org.chromium.content.browser.ContentViewCore; import org.chromium.content.common.ContentSwitches; @@ -123,8 +123,8 @@ public class CastShellActivity extends Activity { getActiveContentViewCore().setContentViewClient(new ContentViewClient() { @Override - public ContentVideoViewClient getContentVideoViewClient() { - return new ActivityContentVideoViewClient(CastShellActivity.this); + public ContentVideoViewEmbedder getContentVideoViewEmbedder() { + return new ActivityContentVideoViewEmbedder(CastShellActivity.this); } }); } |