| Index: content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java
|
| diff --git a/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java b/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java
|
| index f15c4e60e8bca5c59cee92c8f424aeaab8c94c23..b0e273002a9bdf3fef212107c185518fdf51767e 100644
|
| --- a/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java
|
| +++ b/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java
|
| @@ -100,12 +100,12 @@ public class NavigationTest extends ContentShellTestBase {
|
| @MediumTest
|
| @Feature({"Navigation"})
|
| public void testPageReload() throws Throwable {
|
| - final String HTML_LOADTIME = "<html><head>" +
|
| + final String htmlLoadTime = "<html><head>" +
|
| "<script type=\"text/javascript\">var loadTimestamp = new Date().getTime();" +
|
| "function getLoadtime() { return loadTimestamp; }</script></head></html>";
|
| - final String URL_LOADTIME = UrlUtils.encodeHtmlDataUri(HTML_LOADTIME);
|
| + final String urlLoadTime = UrlUtils.encodeHtmlDataUri(htmlLoadTime);
|
|
|
| - ContentShellActivity activity = launchContentShellWithUrl(URL_LOADTIME);
|
| + ContentShellActivity activity = launchContentShellWithUrl(urlLoadTime);
|
| waitForActiveShellToBeDoneLoading();
|
| ContentViewCore contentViewCore = activity.getActiveContentViewCore();
|
| TestCallbackHelperContainer testCallbackHelperContainer =
|
|
|