| Index: content/public/test/android/javatests/src/org/chromium/content/browser/test/util/HistoryUtils.java
|
| diff --git a/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/HistoryUtils.java b/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/HistoryUtils.java
|
| index 12f4fa3b71a308fea263ef413f065f9ea0e669d0..9f27f344bee79e653bcfa22706439ed43c762cec 100644
|
| --- a/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/HistoryUtils.java
|
| +++ b/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/HistoryUtils.java
|
| @@ -34,11 +34,11 @@ public class HistoryUtils {
|
| final WebContents webContents) throws Throwable {
|
| return InstrumentationUtils.runOnMainSyncAndGetResult(
|
| instrumentation, new Callable<Boolean>() {
|
| - @Override
|
| - public Boolean call() {
|
| - return webContents.getNavigationController().canGoBack();
|
| - }
|
| - });
|
| + @Override
|
| + public Boolean call() {
|
| + return webContents.getNavigationController().canGoBack();
|
| + }
|
| + });
|
| }
|
|
|
| /**
|
| @@ -55,11 +55,11 @@ public class HistoryUtils {
|
| final WebContents webContents, final int offset) throws Throwable {
|
| return InstrumentationUtils.runOnMainSyncAndGetResult(
|
| instrumentation, new Callable<Boolean>() {
|
| - @Override
|
| - public Boolean call() throws Exception {
|
| - return webContents.getNavigationController().canGoToOffset(offset);
|
| - }
|
| - });
|
| + @Override
|
| + public Boolean call() throws Exception {
|
| + return webContents.getNavigationController().canGoToOffset(offset);
|
| + }
|
| + });
|
| }
|
|
|
| /**
|
| @@ -74,11 +74,11 @@ public class HistoryUtils {
|
| final WebContents webContents) throws Throwable {
|
| return InstrumentationUtils.runOnMainSyncAndGetResult(
|
| instrumentation, new Callable<Boolean>() {
|
| - @Override
|
| - public Boolean call() {
|
| - return webContents.getNavigationController().canGoForward();
|
| - }
|
| - });
|
| + @Override
|
| + public Boolean call() {
|
| + return webContents.getNavigationController().canGoForward();
|
| + }
|
| + });
|
| }
|
|
|
| /**
|
| @@ -110,11 +110,11 @@ public class HistoryUtils {
|
| final WebContents webContents) throws Throwable {
|
| return InstrumentationUtils.runOnMainSyncAndGetResult(
|
| instrumentation, new Callable<String>() {
|
| - @Override
|
| - public String call() throws Exception {
|
| - return webContents.getUrl();
|
| - }
|
| - });
|
| + @Override
|
| + public String call() throws Exception {
|
| + return webContents.getUrl();
|
| + }
|
| + });
|
| }
|
|
|
| /**
|
|
|