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

Unified Diff: content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java

Issue 600983002: [Checkstyle] Fix misc style issues in Java files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build Created 6 years, 3 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/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java
diff --git a/content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java b/content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java
index 2bef1a69ba41b110b9baa1df27f693aa8c6d65be..ed9d6536cf218c6a6740cb7f8d7cbabd6e142260 100644
--- a/content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java
+++ b/content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java
@@ -51,11 +51,11 @@ public class AdapterInputConnectionTest extends ContentShellTestBase {
public void testSetComposingText() throws Throwable {
mConnection.setComposingText("t", 1);
assertCorrectState("t", 1, 1, 0, 1, mConnection.getImeStateForTesting());
- mWrapper.verifyUpdateSelectionCall(0, 1, 1, 0 ,1);
+ mWrapper.verifyUpdateSelectionCall(0, 1, 1, 0, 1);
mConnection.setComposingText("te", 1);
assertCorrectState("te", 2, 2, 0, 2, mConnection.getImeStateForTesting());
- mWrapper.verifyUpdateSelectionCall(1, 2, 2, 0 ,2);
+ mWrapper.verifyUpdateSelectionCall(1, 2, 2, 0, 2);
mConnection.setComposingText("tes", 1);
assertCorrectState("tes", 3, 3, 0, 3, mConnection.getImeStateForTesting());
@@ -82,7 +82,7 @@ public class AdapterInputConnectionTest extends ContentShellTestBase {
assertEquals(0, mWrapper.getUpdateSelectionCallCount());
mConnection.endBatchEdit();
assertEquals(1, mWrapper.getUpdateSelectionCallCount());
- mWrapper.verifyUpdateSelectionCall(0, 4, 4, 0 ,4);
+ mWrapper.verifyUpdateSelectionCall(0, 4, 4, 0, 4);
}
@MediumTest

Powered by Google App Engine
This is Rietveld 408576698