Bug 595452 - switch desktop notifications over to content permission prompt r=olli a=mfinkle

--HG--
extra : rebase_source : 11a92fa28a02d88fac96bd73ec8b93ce5f14bc2c
This commit is contained in:
Doug Turner 2010-09-13 12:31:53 -07:00
Родитель 48afe97055
Коммит c4425c7635
4 изменённых файлов: 21 добавлений и 88 удалений

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

@ -48,7 +48,6 @@ GRE_MODULE = 1
XPIDLSRCS = nsIDOMNavigatorDesktopNotification.idl \
nsIDOMDesktopNotification.idl \
nsIDesktopNotificationPrompt.idl \
$(NULL)
include $(topsrcdir)/config/rules.mk

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

@ -1,79 +0,0 @@
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is DesktopNotification.
*
* The Initial Developer of the Original Code is Mozilla Foundation
* Portions created by the Initial Developer are Copyright (C) 2010
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Doug Turner <dougt@dougt.org> (Original Author)
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#include "nsISupports.idl"
interface nsIURI;
interface nsIDOMWindow;
interface nsIDesktopNotificationPrompt;
%{C++
/*
This must be implemented by embedders to be able to support DOM DesktopNotification.
*/
#define NS_DOM_DESKTOP_NOTIFICATION_PROMPT_CONTRACTID "@mozilla.org/dom-desktop-notification/prompt;1"
%}
/**
* Interface allows access to a notice and is passed to
* the nsIDesktopNotificationPrompt so that the application can approve
* or deny the request.
*/
[scriptable, uuid(A23B1236-9374-4591-97BF-5413FC4813A6)]
interface nsIDOMDesktopNotificationRequest : nsISupports {
/*
* URI and window corresponding to where this request
* originated.
*/
readonly attribute nsIURI requestingURI;
readonly attribute nsIDOMWindow requestingWindow;
void cancel();
void allow();
};
/**
* Interface provides a way for the application to handle
* the UI prompts associated with geo position.
*/
[scriptable, function, uuid(00D49D61-3D08-4AC6-B662-5E421F60CC2F)]
interface nsIDesktopNotificationPrompt : nsISupports {
/**
* Called when a request has been made to access desktop notifications
*/
void prompt(in nsIDOMDesktopNotificationRequest request);
};

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

@ -246,11 +246,11 @@ nsDesktopNotificationCenter::CreateNotification(const nsAString & title,
/* ------------------------------------------------------------------------ */
NS_IMPL_ISUPPORTS2(nsDesktopNotificationRequest,
nsIDOMDesktopNotificationRequest,
nsIContentPermissionRequest,
nsIRunnable)
NS_IMETHODIMP
nsDesktopNotificationRequest::GetRequestingURI(nsIURI * *aRequestingURI)
nsDesktopNotificationRequest::GetUri(nsIURI * *aRequestingURI)
{
if (!mDesktopNotification)
return NS_ERROR_NOT_INITIALIZED;
@ -260,7 +260,7 @@ nsDesktopNotificationRequest::GetRequestingURI(nsIURI * *aRequestingURI)
}
NS_IMETHODIMP
nsDesktopNotificationRequest::GetRequestingWindow(nsIDOMWindow * *aRequestingWindow)
nsDesktopNotificationRequest::GetWindow(nsIDOMWindow * *aRequestingWindow)
{
if (!mDesktopNotification)
return NS_ERROR_NOT_INITIALIZED;
@ -270,6 +270,12 @@ nsDesktopNotificationRequest::GetRequestingWindow(nsIDOMWindow * *aRequestingWin
return NS_OK;
}
NS_IMETHODIMP
nsDesktopNotificationRequest::GetElement(nsIDOMElement * *aElement)
{
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP
nsDesktopNotificationRequest::Cancel()
{
@ -285,3 +291,10 @@ nsDesktopNotificationRequest::Allow()
return NS_OK;
}
NS_IMETHODIMP
nsDesktopNotificationRequest::GetType(nsACString & aType)
{
aType = "desktop-notification";
return NS_OK;
}

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

@ -44,7 +44,7 @@
#include "nsIDOMDesktopNotification.h"
#include "nsIDOMEventTarget.h"
#include "nsIDesktopNotificationPrompt.h"
#include "nsIContentPermissionPrompt.h"
#include "nsIObserver.h"
#include "nsString.h"
@ -140,20 +140,20 @@ protected:
/*
* Simple Request
*/
class nsDesktopNotificationRequest : public nsIDOMDesktopNotificationRequest,
class nsDesktopNotificationRequest : public nsIContentPermissionRequest,
public nsRunnable
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMDESKTOPNOTIFICATIONREQUEST
NS_DECL_NSICONTENTPERMISSIONREQUEST
nsDesktopNotificationRequest(nsDOMDesktopNotification* notification)
: mDesktopNotification(notification) {}
NS_IMETHOD Run()
{
nsCOMPtr<nsIDesktopNotificationPrompt> prompt =
do_GetService(NS_DOM_DESKTOP_NOTIFICATION_PROMPT_CONTRACTID);
nsCOMPtr<nsIContentPermissionPrompt> prompt =
do_GetService(NS_CONTENT_PERMISSION_PROMPT_CONTRACTID);
if (prompt) {
prompt->Prompt(this);
}