| Index: remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java
|
| diff --git a/remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java b/remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java
|
| index 83af125b2e2a6836ce9f1e5869eee522daba97c7..c5f56cd76dfb7afb0e49dff592af963d1e5877a5 100644
|
| --- a/remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java
|
| +++ b/remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java
|
| @@ -467,10 +467,14 @@ public class JniInterface {
|
| }
|
|
|
| /** Position of cursor hotspot within cursor image. Called on the graphics thread. */
|
| - public static Point getCursorHotspot() { return sCursorHotspot; }
|
| + public static Point getCursorHotspot() {
|
| + return sCursorHotspot;
|
| + }
|
|
|
| /** Returns the current cursor shape. Called on the graphics thread. */
|
| - public static Bitmap getCursorBitmap() { return sCursorBitmap; }
|
| + public static Bitmap getCursorBitmap() {
|
| + return sCursorBitmap;
|
| + }
|
|
|
| //
|
| // Third Party Authentication
|
|
|