diff -r 000000000000 -r 6474c204b198 mobile/android/base/BaseGeckoInterface.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mobile/android/base/BaseGeckoInterface.java Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,138 @@ +/* -*- 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.HardwareUtils; +import org.mozilla.gecko.util.ThreadUtils; +import org.mozilla.gecko.prompts.PromptService; + +import android.app.Activity; +import android.content.Context; +import android.graphics.RectF; +import android.hardware.SensorEventListener; +import android.location.LocationListener; +import android.os.Build; +import android.view.View; +import android.view.Window; +import android.view.WindowManager; +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 Context mContext; + private GeckoProfile mProfile; + + public BaseGeckoInterface(Context context) { + mContext = context; + } + + 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; + } + + // Bug 908770: Implement this + public PromptService getPromptService() { + return null; + } + + public Activity getActivity() { + return (Activity)mContext; + } + + public String getDefaultUAString() { + return HardwareUtils.isTablet() ? AppConstants.USER_AGENT_FENNEC_TABLET : + AppConstants.USER_AGENT_FENNEC_MOBILE; + } + + // Bug 908772: Implement this + public LocationListener getLocationListener() { + return null; + } + + // Bug 908773: Implement this + public SensorEventListener getSensorEventListener() { + return null; + } + + // Bug 908775: Implement this + public void doRestart() {} + + public void setFullScreen(final boolean fullscreen) { + ThreadUtils.postToUiThread(new Runnable() { + @Override + public void run() { + // Hide/show the system notification bar + Window window = ((Activity)mContext).getWindow(); + window.setFlags(fullscreen ? + WindowManager.LayoutParams.FLAG_FULLSCREEN : 0, + WindowManager.LayoutParams.FLAG_FULLSCREEN); + + if (Build.VERSION.SDK_INT >= 11) + window.getDecorView().setSystemUiVisibility(fullscreen ? 1 : 0); + } + }); + } + + // Bug 908779: Implement this + public void addPluginView(final View view, final RectF rect, final boolean isFullScreen) {} + + // Bug 908781: Implement this + public void removePluginView(final View view, final boolean isFullScreen) {} + + // Bug 908783: Implement this + public void enableCameraView() {} + + // Bug 908785: Implement this + public void disableCameraView() {} + + // Bug 908786: Implement this + public void addAppStateListener(GeckoAppShell.AppStateListener listener) {} + + // Bug 908787: Implement this + public void removeAppStateListener(GeckoAppShell.AppStateListener listener) {} + + // Bug 908788: Implement this + public View getCameraView() { + return null; + } + + // Bug 908789: Implement this + public void notifyWakeLockChanged(String topic, String state) {} + + // Bug 908790: Implement this + public FormAssistPopup getFormAssistPopup() { + return null; + } + + public boolean areTabsShown() { + return false; + } + + // Bug 908791: Implement this + public AbsoluteLayout getPluginContainer() { + return null; + } + + public void notifyCheckUpdateResult(String result) { + GeckoAppShell.sendEventToGecko(GeckoEvent.createBroadcastEvent("Update:CheckResult", result)); + } + + public boolean hasTabsSideBar() { + return false; + } + + // Bug 908792: Implement this + public void invalidateOptionsMenu() {} +}