summaryrefslogtreecommitdiffstats
path: root/widget/android/nsIAndroidBridge.idl
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-20 11:22:40 -0500
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 12:48:53 +0200
commit85621ee9b30dd325b85eecb7137a0d3cb1d38c27 (patch)
tree58ea007f69579a4146409f87a2c7e5990717726b /widget/android/nsIAndroidBridge.idl
parentee6595e6deca4bb6d9008fb1495c5da7692a2b33 (diff)
downloadUXP-85621ee9b30dd325b85eecb7137a0d3cb1d38c27.tar
UXP-85621ee9b30dd325b85eecb7137a0d3cb1d38c27.tar.gz
UXP-85621ee9b30dd325b85eecb7137a0d3cb1d38c27.tar.lz
UXP-85621ee9b30dd325b85eecb7137a0d3cb1d38c27.tar.xz
UXP-85621ee9b30dd325b85eecb7137a0d3cb1d38c27.zip
Issue #1053 - Remove Android Widget Toolkit specific files
Diffstat (limited to 'widget/android/nsIAndroidBridge.idl')
-rw-r--r--widget/android/nsIAndroidBridge.idl42
1 files changed, 0 insertions, 42 deletions
diff --git a/widget/android/nsIAndroidBridge.idl b/widget/android/nsIAndroidBridge.idl
deleted file mode 100644
index 91b1a3d52..000000000
--- a/widget/android/nsIAndroidBridge.idl
+++ /dev/null
@@ -1,42 +0,0 @@
-/* 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/. */
-
-#include "nsISupports.idl"
-
-interface mozIDOMWindowProxy;
-
-[scriptable, uuid(e8420a7b-659b-4325-968b-a114a6a067aa)]
-interface nsIBrowserTab : nsISupports {
- readonly attribute mozIDOMWindowProxy window;
- readonly attribute float scale;
-};
-
-[scriptable, uuid(08426a73-e70b-4680-9282-630932e2b2bb)]
-interface nsIUITelemetryObserver : nsISupports {
- void startSession(in wstring name,
- in long long timestamp);
- void stopSession(in wstring name,
- in wstring reason,
- in long long timestamp);
- void addEvent(in wstring action,
- in wstring method,
- in long long timestamp,
- in wstring extras);
-};
-
-[scriptable, uuid(0370450f-2e9c-4d16-b333-8ca6ce31a5ff)]
-interface nsIAndroidBrowserApp : nsISupports {
- readonly attribute nsIBrowserTab selectedTab;
- nsIBrowserTab getBrowserTab(in int32_t tabId);
- nsIUITelemetryObserver getUITelemetryObserver();
-};
-
-[scriptable, uuid(1beb70d3-70f3-4742-98cc-a3d301b26c0c)]
-interface nsIAndroidBridge : nsISupports
-{
- [implicit_jscontext] void handleGeckoMessage(in jsval message);
- attribute nsIAndroidBrowserApp browserApp;
- void contentDocumentChanged(in mozIDOMWindowProxy window);
- boolean isContentDocumentDisplayed(in mozIDOMWindowProxy window);
-};