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

Unified Diff: content/public/test/android/javatests/src/org/chromium/content/browser/test/util/HistoryUtils.java

Issue 657163004: Fix Java indentation issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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: 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();
+ }
+ });
}
/**

Powered by Google App Engine
This is Rietveld 408576698