Bug 1615109, part 2 - Remove the SharePicker stub implementation. r=marcosc

The stub implementation seems like it conflicts on platforms where we have an
implementation, is registered in the child process where we don't need it,
and the implementation itself uses getters where it should use fields.

The code that tries to find a sharepicker implementation handles one not
being registered just fine as far as I can see, so just remove the stub
implementation now that we have actual implementations for people to
look at.

Differential Revision: https://phabricator.services.mozilla.com/D69147

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andrew McCreight 2020-04-01 17:53:31 +00:00
Родитель f1fe1626ec
Коммит 28946d1b1d
4 изменённых файлов: 0 добавлений и 89 удалений

Просмотреть файл

@ -57,7 +57,6 @@ DIRS += [
'uitour',
'urlbar',
'translation',
'webshare',
]
DIRS += ['build']

Просмотреть файл

@ -1,82 +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/. */
const { XPCOMUtils } = ChromeUtils.import(
"resource://gre/modules/XPCOMUtils.jsm"
);
class SharePicker {
constructor() {
this._initialized = false;
}
get classDescription() {
return "Web Share Picker";
}
get classID() {
return Components.ID("{1201d357-8417-4926-a694-e6408fbedcf8}");
}
get contractID() {
return "@mozilla.org/sharepicker;1";
}
get QueryInterface() {
return ChromeUtils.generateQI([Ci.nsISharePicker]);
}
/**
* Initializer.
*
* @param {nsIDOMWindow} openerWindow
*/
init(openerWindow) {
if (this._initialized) {
throw new Error("Unexpected re-initialization. This is not allowed.");
}
this._initialized = true;
if (openerWindow instanceof Ci.nsIDOMWindow === false) {
throw new TypeError("Expected nsIDOMWindow");
}
this._openerWindow = openerWindow;
}
/**
* The data being shared by the Document.
*
* @param {String?} title - title of the share
* @param {String?} text - text shared
* @param {nsIURI?} url - a URI shared
*/
async share(title, text, url) {
// If anything goes wrong, always throw a real DOMException.
// e.g., throw new DOMException(someL10nMsg, "AbortError");
//
// The possible conditions are:
// - User cancels or timeout: "AbortError"
// - Data error: "DataError"
// - Anything else, please file a bug on the spec:
// https://github.com/w3c/web-share/issues/
//
// Returning without throwing is success.
//
// This mock implementation just rejects - it's just here
// as a guide to do actual platform integration.
throw new DOMException("Not supported.", "AbortError");
}
/**
* @returns mozIDOMWindowProxy
*/
get openerWindow() {
return this._openerWindow;
}
__init() {}
}
const NSGetFactory = XPCOMUtils.generateNSGetFactory([SharePicker]);

Просмотреть файл

@ -1,2 +0,0 @@
component {1201d357-8417-4926-a694-e6408fbedcf8} SharePicker.js
contract @mozilla.org/sharepicker;1 {1201d357-8417-4926-a694-e6408fbedcf8}

Просмотреть файл

@ -1,4 +0,0 @@
EXTRA_COMPONENTS += [
'SharePicker.js',
'SharePicker.manifest',
]