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

Unified Diff: content/shell/android/java/src/org/chromium/content_shell/ShellManager.java

Issue 227803004: ContentView->ContentViewCore in ContentViewRenderView (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 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/shell/android/java/src/org/chromium/content_shell/ShellManager.java
diff --git a/content/shell/android/java/src/org/chromium/content_shell/ShellManager.java b/content/shell/android/java/src/org/chromium/content_shell/ShellManager.java
index 6d6db1c98e96ad59be3eb2d7e158042d5eb53916..8004de0354d11168fee2996106513e6f173a22d5 100644
--- a/content/shell/android/java/src/org/chromium/content_shell/ShellManager.java
+++ b/content/shell/android/java/src/org/chromium/content_shell/ShellManager.java
@@ -153,8 +153,8 @@ public class ShellManager extends FrameLayout {
mActiveShell = shellView;
ContentView contentView = mActiveShell.getContentView();
if (contentView != null) {
- mContentViewRenderView.setCurrentContentView(contentView);
- contentView.onShow();
+ mContentViewRenderView.setCurrentContentViewCore(contentView.getContentViewCore());
+ contentView.getContentViewCore().onShow();
Yaron 2014/04/07 18:48:32 Oops. this bled in. No harm though for fixing now.
}
}

Powered by Google App Engine
This is Rietveld 408576698