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

Unified Diff: android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientShouldInterceptRequestTest.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: android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientShouldInterceptRequestTest.java
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientShouldInterceptRequestTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientShouldInterceptRequestTest.java
index 7a66bbdbbd15f36f21d989747a4bfb4702016598..8cc47d532d923ef6d47bded370eceeeec112e920 100644
--- a/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientShouldInterceptRequestTest.java
+++ b/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientShouldInterceptRequestTest.java
@@ -251,8 +251,8 @@ public class AwContentsClientShouldInterceptRequestTest extends AwTestBase {
public Boolean call() throws Exception {
Bitmap bitmap = Bitmap.createBitmap(2, 2, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
- canvas.translate(-(float)mTestContainerView.getWidth() / 2,
- -(float)mTestContainerView.getHeight() / 2);
+ canvas.translate(-(float) mTestContainerView.getWidth() / 2,
+ -(float) mTestContainerView.getHeight() / 2);
mAwContents.onDraw(canvas);
return bitmap.getPixel(0, 0) == Color.BLUE;
}

Powered by Google App Engine
This is Rietveld 408576698