Bug 984132 - Remove the unused WebActivities XPIDL interfaces; r=fabrice

When we decide to implement these interfaces, they should be implemented in WebIDL.
This commit is contained in:
Ehsan Akhgari 2014-03-16 23:51:45 -04:00
parent 04b6449833
commit 585a4b69a2
3 changed files with 0 additions and 41 deletions

View File

@ -7,10 +7,8 @@
XPIDL_SOURCES += [
'nsIActivityProxy.idl',
'nsIActivityUIGlue.idl',
'nsIDOMActivityHandlerDescription.idl',
'nsIDOMActivityOptions.idl',
'nsIDOMActivityRequestHandler.idl',
'nsIDOMNavigatorActivities.idl',
]
XPIDL_MODULE = 'dom_activities'

View File

@ -1,19 +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 "domstubs.idl"
/**
* The constructor will accept the name as a parameter.
*/
[scriptable, uuid(1601d370-08d9-47b7-8802-d4291533b843)]
interface nsIDOMMozActivityHandlerDescription : nsISupports
{
attribute DOMString name;
attribute DOMString href;
attribute DOMString disposition;
attribute boolean returnValue;
// The |filters| property can be null.
attribute jsval filters;
};

View File

@ -1,20 +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 "domstubs.idl"
interface nsIDOMMozActivityHandlerDescription;
interface nsIDOMDOMRequest;
/**
* This interface is implemented by the Navigator object.
*/
[scriptable, uuid(e7cb7d2f-11d2-4783-a8b0-bddabb4a5c03)]
interface nsIDOMMozNavigatorActivities : nsISupports
{
nsIDOMDOMRequest mozRegisterActivityHandler(in nsIDOMMozActivityHandlerDescription description);
void mozUnregisterActivityHandler(in nsIDOMMozActivityHandlerDescription description);
bool mozIsActivityHandlerRegistered(in nsIDOMMozActivityHandlerDescription description);
};