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

Unified Diff: android_webview/test/shell/src/org/chromium/android_webview/shell/DrawGL.java

Issue 663573002: 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: android_webview/test/shell/src/org/chromium/android_webview/shell/DrawGL.java
diff --git a/android_webview/test/shell/src/org/chromium/android_webview/shell/DrawGL.java b/android_webview/test/shell/src/org/chromium/android_webview/shell/DrawGL.java
index ee0d3952014c80b8bb192a51ef612b4b7638978a..bc5e4298ac059557172b8c89205aa86902c36f9b 100644
--- a/android_webview/test/shell/src/org/chromium/android_webview/shell/DrawGL.java
+++ b/android_webview/test/shell/src/org/chromium/android_webview/shell/DrawGL.java
@@ -8,11 +8,11 @@ package org.chromium.android_webview.shell;
* Provides an entry point to the native draw functor.
*/
public class DrawGL {
- public static void drawGL(long drawGL, long viewContext, int width, int height,
- int scrollX, int scrollY, int mode) {
- nativeDrawGL(drawGL, viewContext, width, height, scrollX, scrollY, mode);
- }
+ public static void drawGL(long drawGL, long viewContext, int width, int height,
+ int scrollX, int scrollY, int mode) {
+ nativeDrawGL(drawGL, viewContext, width, height, scrollX, scrollY, mode);
+ }
- private static native void nativeDrawGL(long drawGL, long viewContext,
- int width, int height, int scrollX, int scrollY, int mode);
+ private static native void nativeDrawGL(long drawGL, long viewContext,
+ int width, int height, int scrollX, int scrollY, int mode);
}

Powered by Google App Engine
This is Rietveld 408576698