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

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

Issue 1100823004: Remove AccessibilityInjector support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Chrome cast shell Created 5 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/Shell.java
diff --git a/content/shell/android/java/src/org/chromium/content_shell/Shell.java b/content/shell/android/java/src/org/chromium/content_shell/Shell.java
index 6795c163707665ebb1a578336895afae15b39690..29d9ecd20cb56110f876e021dfb524518d33a033 100644
--- a/content/shell/android/java/src/org/chromium/content_shell/Shell.java
+++ b/content/shell/android/java/src/org/chromium/content_shell/Shell.java
@@ -287,7 +287,7 @@ public class Shell extends LinearLayout {
private void initFromNativeTabContents(WebContents webContents) {
Context context = getContext();
mContentViewCore = new ContentViewCore(context);
- ContentView cv = ContentView.newInstance(context, mContentViewCore);
+ ContentView cv = new ContentView(context, mContentViewCore);
mContentViewCore.initialize(cv, cv, webContents, mWindow);
mContentViewCore.setContentViewClient(mContentViewClient);
mWebContents = mContentViewCore.getWebContents();

Powered by Google App Engine
This is Rietveld 408576698