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); |
} |