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

Unified Diff: chromecast/shell/android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java

Issue 589113002: Rename java WebContentsObserverAndroid to WebContentsObserver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: chromecast/shell/android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java
diff --git a/chromecast/shell/android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java b/chromecast/shell/android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java
index 057f812734600fb95533fdcd8f66053c21f9705e..bbb14c6e4bf3d54ae1441b6b20c1c8e117a27f87 100644
--- a/chromecast/shell/android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java
+++ b/chromecast/shell/android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java
@@ -20,7 +20,7 @@ import org.chromium.base.JNINamespace;
import org.chromium.content.browser.ContentView;
import org.chromium.content.browser.ContentViewCore;
import org.chromium.content.browser.ContentViewRenderView;
-import org.chromium.content.browser.WebContentsObserverAndroid;
+import org.chromium.content.browser.WebContentsObserver;
import org.chromium.content_public.browser.LoadUrlParams;
import org.chromium.ui.base.WindowAndroid;
@@ -37,7 +37,7 @@ public class CastWindowAndroid extends LinearLayout {
private ContentViewCore mContentViewCore;
private ContentViewRenderView mContentViewRenderView;
- private WebContentsObserverAndroid mWebContentsObserver;
+ private WebContentsObserver mWebContentsObserver;
private WindowAndroid mWindow;
/**
@@ -126,7 +126,7 @@ public class CastWindowAndroid extends LinearLayout {
view.requestFocus();
mContentViewRenderView.setCurrentContentViewCore(mContentViewCore);
- mWebContentsObserver = new WebContentsObserverAndroid(mContentViewCore.getWebContents()) {
+ mWebContentsObserver = new WebContentsObserver(mContentViewCore.getWebContents()) {
@Override
public void didStopLoading(String url) {
Uri intentUri = Uri.parse(mContentViewCore

Powered by Google App Engine
This is Rietveld 408576698