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()); |
} |
}); |