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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java

Issue 2353063005: Refactor ContentViewClient (1/6) (Closed)
Patch Set: rebased Created 4 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: chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java b/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java
index f3710ee425b7a8f8bdc40a6789b7f0ec3405b4d0..83b9e993aa9eaf54f57c7f3e0b725be4bd4c8ab3 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java
@@ -121,7 +121,7 @@ public class VrShell extends GvrLayout implements GLSurfaceView.Renderer, VrShel
mUiVrWindowAndroid = new VrWindowAndroid(mActivity);
mUiContents = WebContentsFactory.createWebContents(true, false);
- mUiCVC = new ContentViewCore(mActivity);
+ mUiCVC = new ContentViewCore(mActivity, "");
boliu 2016/09/27 23:28:45 ditto, this one has to be wrong..
Jinsuk Kim 2016/09/28 03:58:52 ChromeVersionInfo.getProductVersion().
ContentView uiContentView = ContentView.createContentView(mActivity, mUiCVC);
mUiCVC.initialize(ViewAndroidDelegate.createBasicDelegate(uiContentView),
uiContentView, mUiContents, mUiVrWindowAndroid);

Powered by Google App Engine
This is Rietveld 408576698