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

Unified Diff: android_webview/javatests/src/org/chromium/android_webview/test/SaveRestoreStateTest.java

Issue 481803004: Removing ContentViewCore dependencies from few functions which acts as direct wrapper to WebContents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed review comments and rebased the patch. Created 6 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: android_webview/javatests/src/org/chromium/android_webview/test/SaveRestoreStateTest.java
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/SaveRestoreStateTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/SaveRestoreStateTest.java
index 05026112e4fd3d51b0d9bd70d25a3671babea4ee..ae8e13592af92aaf142b70135cc914f55b54e83c 100644
--- a/android_webview/javatests/src/org/chromium/android_webview/test/SaveRestoreStateTest.java
+++ b/android_webview/javatests/src/org/chromium/android_webview/test/SaveRestoreStateTest.java
@@ -10,7 +10,7 @@ import android.test.suitebuilder.annotation.SmallTest;
import org.chromium.android_webview.AwContents;
import org.chromium.android_webview.test.util.CommonResources;
import org.chromium.base.test.util.Feature;
-import org.chromium.content.browser.ContentViewCore;
+import org.chromium.content_public.browser.NavigationController;
import org.chromium.content_public.browser.NavigationHistory;
import org.chromium.net.test.util.TestWebServer;
@@ -25,14 +25,14 @@ public class SaveRestoreStateTest extends AwTestBase {
public final TestAwContentsClient contentsClient;
public final AwTestContainerView testView;
public final AwContents awContents;
- public final ContentViewCore contentViewCore;
+ public final NavigationController navigationController;
public TestVars(TestAwContentsClient contentsClient,
AwTestContainerView testView) {
this.contentsClient = contentsClient;
this.testView = testView;
this.awContents = testView.getAwContents();
- this.contentViewCore = this.awContents.getContentViewCore();
+ this.navigationController = this.awContents.getNavigationController();
}
}
@@ -93,7 +93,7 @@ public class SaveRestoreStateTest extends AwTestBase {
return runTestOnUiThreadAndGetResult(new Callable<NavigationHistory>() {
@Override
public NavigationHistory call() throws Exception {
- return vars.contentViewCore.getNavigationHistory();
+ return vars.navigationController.getNavigationHistory();
}
});
}
@@ -136,7 +136,7 @@ public class SaveRestoreStateTest extends AwTestBase {
pollOnUiThread(new Callable<Boolean>() {
@Override
public Boolean call() throws Exception {
- return TITLES[0].equals(restoredVars.contentViewCore.getTitle()) &&
+ return TITLES[0].equals(restoredVars.awContents.getTitle()) &&
TITLES[0].equals(restoredVars.contentsClient.getUpdatedTitle());
}
});

Powered by Google App Engine
This is Rietveld 408576698