summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/main/java/org/mozilla/gecko/BaseGeckoInterface.java
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2019-04-23 15:32:23 -0400
committerMatt A. Tobin <email@mattatobin.com>2019-04-23 15:32:23 -0400
commitabe80cc31d5a40ebed743085011fbcda0c1a9a10 (patch)
treefb3762f06b84745b182af281abb107b95a9fcf01 /mobile/android/geckoview/src/main/java/org/mozilla/gecko/BaseGeckoInterface.java
parent63295d0087eb58a6eb34cad324c4c53d1b220491 (diff)
downloadUXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.gz
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.lz
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.xz
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.zip
Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android
Diffstat (limited to 'mobile/android/geckoview/src/main/java/org/mozilla/gecko/BaseGeckoInterface.java')
-rw-r--r--mobile/android/geckoview/src/main/java/org/mozilla/gecko/BaseGeckoInterface.java169
1 files changed, 0 insertions, 169 deletions
diff --git a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/BaseGeckoInterface.java b/mobile/android/geckoview/src/main/java/org/mozilla/gecko/BaseGeckoInterface.java
deleted file mode 100644
index c4f64fd3d..000000000
--- a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/BaseGeckoInterface.java
+++ /dev/null
@@ -1,169 +0,0 @@
-/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
- * 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/. */
-
-package org.mozilla.gecko;
-
-import org.mozilla.gecko.util.ActivityUtils;
-import org.mozilla.gecko.util.HardwareUtils;
-import org.mozilla.gecko.util.ThreadUtils;
-
-import android.app.Activity;
-import android.content.Context;
-import android.graphics.RectF;
-import android.hardware.SensorEventListener;
-import android.location.LocationListener;
-import android.view.View;
-import android.widget.AbsoluteLayout;
-
-public class BaseGeckoInterface implements GeckoAppShell.GeckoInterface {
- // Bug 908744: Implement GeckoEventListener
- // Bug 908752: Implement SensorEventListener
- // Bug 908755: Implement LocationListener
- // Bug 908756: Implement Tabs.OnTabsChangedListener
- // Bug 908760: Implement GeckoEventResponder
-
- private final Context mContext;
- private GeckoProfile mProfile;
- private final EventDispatcher eventDispatcher;
-
- public BaseGeckoInterface(Context context) {
- mContext = context;
- eventDispatcher = new EventDispatcher();
- }
-
- @Override
- public EventDispatcher getAppEventDispatcher() {
- return eventDispatcher;
- }
-
- @Override
- public GeckoProfile getProfile() {
- // Fall back to default profile if we didn't load a specific one
- if (mProfile == null) {
- mProfile = GeckoProfile.get(mContext);
- }
- return mProfile;
- }
-
- @Override
- public Activity getActivity() {
- return (Activity)mContext;
- }
-
- @Override
- public String getDefaultUAString() {
- return HardwareUtils.isTablet() ? AppConstants.USER_AGENT_FENNEC_TABLET :
- AppConstants.USER_AGENT_FENNEC_MOBILE;
- }
-
- // Bug 908775: Implement this
- @Override
- public void doRestart() {}
-
- @Override
- public void setFullScreen(final boolean fullscreen) {
- ThreadUtils.postToUiThread(new Runnable() {
- @Override
- public void run() {
- ActivityUtils.setFullScreen(getActivity(), fullscreen);
- }
- });
- }
-
- // Bug 908779: Implement this
- @Override
- public void addPluginView(final View view) {}
-
- // Bug 908781: Implement this
- @Override
- public void removePluginView(final View view) {}
-
- @Override
- public void enableOrientationListener() {}
-
- @Override
- public void disableOrientationListener() {}
-
- // Bug 908786: Implement this
- @Override
- public void addAppStateListener(GeckoAppShell.AppStateListener listener) {}
-
- // Bug 908787: Implement this
- @Override
- public void removeAppStateListener(GeckoAppShell.AppStateListener listener) {}
-
- // Bug 908789: Implement this
- @Override
- public void notifyWakeLockChanged(String topic, String state) {}
-
- @Override
- public boolean areTabsShown() {
- return false;
- }
-
- // Bug 908791: Implement this
- @Override
- public AbsoluteLayout getPluginContainer() {
- return null;
- }
-
- @Override
- public void notifyCheckUpdateResult(String result) {
- GeckoAppShell.notifyObservers("Update:CheckResult", result);
- }
-
- // Bug 908792: Implement this
- @Override
- public void invalidateOptionsMenu() {}
-
- @Override
- public void createShortcut(String title, String URI) {
- // By default, do nothing.
- }
-
- @Override
- public void checkUriVisited(String uri) {
- // By default, no URIs are considered visited.
- }
-
- @Override
- public void markUriVisited(final String uri) {
- // By default, no URIs are marked as visited.
- }
-
- @Override
- public void setUriTitle(final String uri, final String title) {
- // By default, no titles are associated with URIs.
- }
-
- @Override
- public void setAccessibilityEnabled(boolean enabled) {
- // By default, take no action when accessibility is toggled on or off.
- }
-
- @Override
- public boolean openUriExternal(String targetURI, String mimeType, String packageName, String className, String action, String title) {
- // By default, never open external URIs.
- return false;
- }
-
- @Override
- public String[] getHandlersForMimeType(String mimeType, String action) {
- // By default, offer no handlers for any MIME type.
- return new String[] {};
- }
-
- @Override
- public String[] getHandlersForURL(String url, String action) {
- // By default, offer no handlers for any URL.
- return new String[] {};
- }
-
- @Override
- public String getDefaultChromeURI() {
- // By default, use the GeckoView-specific chrome URI.
- return "chrome://browser/content/geckoview.xul";
- }
-}