Chromium Code Reviews| Index: chrome/android/shell/javatests/src/org/chromium/chrome/shell/ChromeShellUrlTest.java |
| diff --git a/chrome/android/shell/javatests/src/org/chromium/chrome/shell/ChromeShellUrlTest.java b/chrome/android/shell/javatests/src/org/chromium/chrome/shell/ChromeShellUrlTest.java |
| index 4f0fa57f2f296391c2f5a1f03c4e4c25e604a8a6..37a8199290a0061440a665fcfb7adfb851dd76cd 100644 |
| --- a/chrome/android/shell/javatests/src/org/chromium/chrome/shell/ChromeShellUrlTest.java |
| +++ b/chrome/android/shell/javatests/src/org/chromium/chrome/shell/ChromeShellUrlTest.java |
| @@ -64,9 +64,10 @@ public class ChromeShellUrlTest extends ChromeShellTestBase { |
| ThreadUtils.runOnUiThreadBlocking(new Runnable() { |
| @Override |
| public void run() { |
| - isShowingInterstitialPage.set(contentViewCore.get().isShowingInterstitialPage()); |
| - url.set(contentViewCore.get().getUrl()); |
| - title.set(contentViewCore.get().getTitle()); |
| + isShowingInterstitialPage.set(contentViewCore.get().getWebContents(). |
|
Ted C
2014/09/12 00:40:36
same :-)
I'll just say look at all following file
AKVT
2014/09/12 14:37:11
Done.
|
| + isShowingInterstitialPage()); |
| + url.set(contentViewCore.get().getWebContents().getUrl()); |
| + title.set(contentViewCore.get().getWebContents().getTitle()); |
| } |
| }); |
| assertFalse("Showed interstitial page instead of welcome page", |