summaryrefslogtreecommitdiffstats
path: root/android/experimental/LOAndroid/app/src/main/java/org/libreoffice/MainLayerView.java
diff options
context:
space:
mode:
Diffstat (limited to 'android/experimental/LOAndroid/app/src/main/java/org/libreoffice/MainLayerView.java')
-rw-r--r--android/experimental/LOAndroid/app/src/main/java/org/libreoffice/MainLayerView.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/android/experimental/LOAndroid/app/src/main/java/org/libreoffice/MainLayerView.java b/android/experimental/LOAndroid/app/src/main/java/org/libreoffice/MainLayerView.java
deleted file mode 100644
index 5721df2806b3..000000000000
--- a/android/experimental/LOAndroid/app/src/main/java/org/libreoffice/MainLayerView.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package org.libreoffice;
-
-import android.content.Context;
-import android.os.Handler;
-import android.util.AttributeSet;
-
-import org.mozilla.gecko.gfx.LayerView;
-import org.mozilla.gecko.util.ThreadUtils;
-
-public class MainLayerView extends LayerView {
-
- public MainLayerView(Context context) {
- super(context);
- init(context);
- }
-
- public MainLayerView(Context context, AttributeSet attrs) {
- super(context, attrs);
- init(context);
- }
-
- private void init(Context context) {
- ThreadUtils.setUiThread(Thread.currentThread(), new Handler());
- }
-
-}