summaryrefslogtreecommitdiff
path: root/android/Bootstrap
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-05-21 14:51:59 +0100
committerTor Lillqvist <tml@collabora.com>2015-05-21 14:51:59 +0100
commit72a688db732bca48969977b84a165d6d6a80e5af (patch)
treeae8b6c5bd7d3b1705a91c6f20f7ec32942cd7903 /android/Bootstrap
parent43ad4c56fabe0304cf7aa133c7778996afbfae23 (diff)
Remove more obsolete Android code: The 'AppSupport' stuff
Diffstat (limited to 'android/Bootstrap')
-rw-r--r--android/Bootstrap/src/org/libreoffice/android/AppSupport.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/android/Bootstrap/src/org/libreoffice/android/AppSupport.java b/android/Bootstrap/src/org/libreoffice/android/AppSupport.java
deleted file mode 100644
index ef37f183e074..000000000000
--- a/android/Bootstrap/src/org/libreoffice/android/AppSupport.java
+++ /dev/null
@@ -1,31 +0,0 @@
-// -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
-//
-// This file is part of the LibreOffice project.
-//
-// This Source Code Form is subject to the terms of the Mozilla Public
-// License, v. 2.0. If a copy of the MPL was not distributed with this
-// file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-// Native functions that are used by "desktop" approach apps. That means apps
-// that have a "real" LibreOffice "main loop" running (headless).
-
-package org.libreoffice.android;
-
-import android.graphics.Bitmap;
-
-public final class AppSupport
-{
- /* In desktop */
- public static native void runMain();
-
- /* In vcl */
- public static native void renderVCL(Bitmap bitmap);
- public static native void registerForDamageCallback(Class destinationClass);
- public static native void setViewSize(int width, int height);
- public static native void key(char c);
- public static native void touch(int action, int x, int y);
- public static native void zoom(float scale, int x, int y);
- public static native void scroll(int x, int y);
-}
-
-// vim:set shiftwidth=4 softtabstop=4 expandtab: