| Index: content/shell/android/javatests/src/org/chromium/content_shell_apk/ContentShellTestBase.java
|
| diff --git a/content/shell/android/javatests/src/org/chromium/content_shell_apk/ContentShellTestBase.java b/content/shell/android/javatests/src/org/chromium/content_shell_apk/ContentShellTestBase.java
|
| index 0124c79a2cba3f34858d958f550da6a43ebfa7c9..0d3196cc96c1280ec5caa48bd125a62b2b7ac1b9 100644
|
| --- a/content/shell/android/javatests/src/org/chromium/content_shell_apk/ContentShellTestBase.java
|
| +++ b/content/shell/android/javatests/src/org/chromium/content_shell_apk/ContentShellTestBase.java
|
| @@ -10,7 +10,7 @@ import android.net.Uri;
|
| import android.test.ActivityInstrumentationTestCase2;
|
| import android.text.TextUtils;
|
|
|
| -import static org.chromium.base.test.util.ScalableTimeout.ScaleTimeout;
|
| +import static org.chromium.base.test.util.ScalableTimeout.scaleTimeout;
|
|
|
| import org.chromium.base.test.util.UrlUtils;
|
| import org.chromium.content.browser.ContentView;
|
| @@ -31,9 +31,9 @@ import java.util.concurrent.atomic.AtomicBoolean;
|
| public class ContentShellTestBase extends ActivityInstrumentationTestCase2<ContentShellActivity> {
|
|
|
| /** The maximum time the waitForActiveShellToBeDoneLoading method will wait. */
|
| - private static final long WAIT_FOR_ACTIVE_SHELL_LOADING_TIMEOUT = ScaleTimeout(10000);
|
| + private static final long WAIT_FOR_ACTIVE_SHELL_LOADING_TIMEOUT = scaleTimeout(10000);
|
|
|
| - protected static final long WAIT_PAGE_LOADING_TIMEOUT_SECONDS = ScaleTimeout(15);
|
| + protected static final long WAIT_PAGE_LOADING_TIMEOUT_SECONDS = scaleTimeout(15);
|
|
|
| public ContentShellTestBase() {
|
| super(ContentShellActivity.class);
|
|
|