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

Unified Diff: android_webview/javatests/src/org/chromium/android_webview/test/AwZoomTest.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/AwZoomTest.java
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/AwZoomTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/AwZoomTest.java
index 0dbd4976dea4c00daf1a1a74aaec0413f54af07b..50129bd07d662c41e9efc88e4e2f50493b6daaaa 100644
--- a/android_webview/javatests/src/org/chromium/android_webview/test/AwZoomTest.java
+++ b/android_webview/javatests/src/org/chromium/android_webview/test/AwZoomTest.java
@@ -36,7 +36,7 @@ public class AwZoomTest extends AwTestBase {
}
private String getZoomableHtml(float scale) {
- final int divWidthPercent = (int)(100.0f / scale);
+ final int divWidthPercent = (int) (100.0f / scale);
return String.format(Locale.US, "<html><head><meta name=\"viewport\" content=\"" +
"width=device-width, minimum-scale=%f, maximum-scale=%f, initial-scale=%f" +
"\"/></head><body style='margin:0'>" +

Powered by Google App Engine
This is Rietveld 408576698