Index: chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellTab.java |
diff --git a/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellTab.java b/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellTab.java |
index ba7e758e83793717c0a5114caccf75a3a007a485..9b27280db1a31d3c10985a65478da98b7c201cbe 100644 |
--- a/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellTab.java |
+++ b/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellTab.java |
@@ -63,7 +63,7 @@ public class ChromeShellTab extends Tab { |
if (TextUtils.isEmpty(url)) return; |
ContentViewCore contentViewCore = getContentViewCore(); |
Yaron
2014/08/18 23:16:24
We should remove the CVC dependency entirely when
AKVT
2014/09/11 17:19:43
Done. Thanks
|
- if (TextUtils.equals(url, contentViewCore.getUrl())) { |
+ if (TextUtils.equals(url, contentViewCore.getWebContents().getUrl())) { |
contentViewCore.reload(true); |
} else { |
if (postData == null) { |