2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2013-04-10 18:20:43 +04:00
|
|
|
#include "mozilla/dom/DesktopNotification.h"
|
2013-04-10 18:20:43 +04:00
|
|
|
#include "mozilla/dom/DesktopNotificationBinding.h"
|
2013-10-11 22:12:13 +04:00
|
|
|
#include "mozilla/dom/AppNotificationServiceOptionsBinding.h"
|
2014-06-11 23:38:55 +04:00
|
|
|
#include "mozilla/dom/ToJSValue.h"
|
2010-09-14 00:44:53 +04:00
|
|
|
#include "nsContentPermissionHelper.h"
|
|
|
|
#include "nsXULAppAPI.h"
|
|
|
|
#include "mozilla/dom/PBrowserChild.h"
|
2013-04-10 19:08:08 +04:00
|
|
|
#include "nsIDOMDesktopNotification.h"
|
2011-05-25 10:31:59 +04:00
|
|
|
#include "mozilla/Preferences.h"
|
2012-11-29 10:36:15 +04:00
|
|
|
#include "nsGlobalWindow.h"
|
|
|
|
#include "nsIAppsService.h"
|
2013-09-24 01:30:40 +04:00
|
|
|
#include "nsIScriptSecurityManager.h"
|
2013-09-11 00:56:05 +04:00
|
|
|
#include "nsServiceManagerUtils.h"
|
2014-02-10 00:34:40 +04:00
|
|
|
#include "PermissionMessageUtils.h"
|
2014-11-28 22:08:29 +03:00
|
|
|
#include "nsILoadContext.h"
|
2013-08-28 08:14:57 +04:00
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2010-09-14 00:44:53 +04:00
|
|
|
|
2013-08-28 08:14:57 +04:00
|
|
|
/*
|
|
|
|
* Simple Request
|
|
|
|
*/
|
2014-08-01 11:22:20 +04:00
|
|
|
class DesktopNotificationRequest : public nsIContentPermissionRequest
|
|
|
|
, public nsRunnable
|
2013-08-28 08:14:57 +04:00
|
|
|
{
|
2014-08-01 11:22:20 +04:00
|
|
|
virtual ~DesktopNotificationRequest()
|
2014-06-23 23:56:07 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-08-28 08:14:57 +04:00
|
|
|
public:
|
2014-07-14 23:21:34 +04:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2013-08-28 08:14:57 +04:00
|
|
|
NS_DECL_NSICONTENTPERMISSIONREQUEST
|
|
|
|
|
2014-09-02 02:26:43 +04:00
|
|
|
explicit DesktopNotificationRequest(DesktopNotification* aNotification)
|
|
|
|
: mDesktopNotification(aNotification) {}
|
2013-08-28 08:14:57 +04:00
|
|
|
|
|
|
|
NS_IMETHOD Run() MOZ_OVERRIDE
|
|
|
|
{
|
2014-08-01 11:22:20 +04:00
|
|
|
nsCOMPtr<nsPIDOMWindow> window = mDesktopNotification->GetOwner();
|
|
|
|
nsContentPermissionUtils::AskPermission(this, window);
|
2013-08-28 08:14:57 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<DesktopNotification> mDesktopNotification;
|
|
|
|
};
|
|
|
|
|
2010-09-10 09:00:14 +04:00
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
/* AlertServiceObserver */
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS(AlertServiceObserver, nsIObserver)
|
2010-09-10 09:00:14 +04:00
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------ */
|
2013-04-10 18:20:43 +04:00
|
|
|
/* DesktopNotification */
|
2010-09-10 09:00:14 +04:00
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
uint32_t DesktopNotification::sCount = 0;
|
2013-03-18 17:24:53 +04:00
|
|
|
|
2012-07-27 02:25:02 +04:00
|
|
|
nsresult
|
2013-04-10 18:20:43 +04:00
|
|
|
DesktopNotification::PostDesktopNotification()
|
2010-09-10 09:00:14 +04:00
|
|
|
{
|
2013-04-10 18:20:43 +04:00
|
|
|
if (!mObserver) {
|
2012-11-29 10:36:15 +04:00
|
|
|
mObserver = new AlertServiceObserver(this);
|
2013-04-10 18:20:43 +04:00
|
|
|
}
|
2012-11-29 10:36:15 +04:00
|
|
|
|
|
|
|
#ifdef MOZ_B2G
|
|
|
|
nsCOMPtr<nsIAppNotificationService> appNotifier =
|
|
|
|
do_GetService("@mozilla.org/system-alerts-service;1");
|
|
|
|
if (appNotifier) {
|
|
|
|
nsCOMPtr<nsPIDOMWindow> window = GetOwner();
|
|
|
|
uint32_t appId = (window.get())->GetDoc()->NodePrincipal()->GetAppId();
|
|
|
|
|
|
|
|
if (appId != nsIScriptSecurityManager::UNKNOWN_APP_ID) {
|
|
|
|
nsCOMPtr<nsIAppsService> appsService = do_GetService("@mozilla.org/AppsService;1");
|
|
|
|
nsString manifestUrl = EmptyString();
|
|
|
|
appsService->GetManifestURLByLocalId(appId, manifestUrl);
|
2013-10-11 22:12:13 +04:00
|
|
|
mozilla::AutoSafeJSContext cx;
|
2013-11-11 12:04:41 +04:00
|
|
|
JS::Rooted<JS::Value> val(cx);
|
2013-10-11 22:12:13 +04:00
|
|
|
AppNotificationServiceOptions ops;
|
|
|
|
ops.mTextClickable = true;
|
|
|
|
ops.mManifestURL = manifestUrl;
|
|
|
|
|
2014-06-11 23:38:55 +04:00
|
|
|
if (!ToJSValue(cx, ops, &val)) {
|
2013-10-11 22:12:13 +04:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-11-29 10:36:15 +04:00
|
|
|
return appNotifier->ShowAppNotification(mIconURL, mTitle, mDescription,
|
2013-10-11 22:12:13 +04:00
|
|
|
mObserver, val);
|
2012-11-29 10:36:15 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-09-10 09:00:14 +04:00
|
|
|
nsCOMPtr<nsIAlertsService> alerts = do_GetService("@mozilla.org/alerts-service;1");
|
2013-04-10 18:20:43 +04:00
|
|
|
if (!alerts) {
|
2012-07-27 02:25:02 +04:00
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2013-04-10 18:20:43 +04:00
|
|
|
}
|
2010-09-10 09:00:14 +04:00
|
|
|
|
2013-03-18 17:24:53 +04:00
|
|
|
// Generate a unique name (which will also be used as a cookie) because
|
|
|
|
// the nsIAlertsService will coalesce notifications with the same name.
|
|
|
|
// In the case of IPC, the parent process will use the cookie to map
|
|
|
|
// to nsIObservers, thus cookies must be unique to differentiate observers.
|
|
|
|
nsString uniqueName = NS_LITERAL_STRING("desktop-notification:");
|
|
|
|
uniqueName.AppendInt(sCount++);
|
2014-11-28 22:08:29 +03:00
|
|
|
nsCOMPtr<nsIDocument> doc = GetOwner()->GetDoc();
|
|
|
|
nsIPrincipal* principal = doc->NodePrincipal();
|
|
|
|
nsCOMPtr<nsILoadContext> loadContext = doc->GetLoadContext();
|
|
|
|
bool inPrivateBrowsing = loadContext && loadContext->UsePrivateBrowsing();
|
2012-07-27 02:25:02 +04:00
|
|
|
return alerts->ShowAlertNotification(mIconURL, mTitle, mDescription,
|
|
|
|
true,
|
2013-03-18 17:24:53 +04:00
|
|
|
uniqueName,
|
2012-07-27 02:25:02 +04:00
|
|
|
mObserver,
|
2013-03-18 17:24:53 +04:00
|
|
|
uniqueName,
|
2013-03-18 17:24:53 +04:00
|
|
|
NS_LITERAL_STRING("auto"),
|
2013-11-12 03:56:21 +04:00
|
|
|
EmptyString(),
|
2014-08-21 04:56:12 +04:00
|
|
|
EmptyString(),
|
2014-11-28 22:08:29 +03:00
|
|
|
principal,
|
|
|
|
inPrivateBrowsing);
|
2010-09-10 09:00:14 +04:00
|
|
|
}
|
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
DesktopNotification::DesktopNotification(const nsAString & title,
|
|
|
|
const nsAString & description,
|
|
|
|
const nsAString & iconURL,
|
|
|
|
nsPIDOMWindow *aWindow,
|
|
|
|
nsIPrincipal* principal)
|
2014-04-01 10:13:50 +04:00
|
|
|
: DOMEventTargetHelper(aWindow)
|
2014-01-07 06:53:23 +04:00
|
|
|
, mTitle(title)
|
2010-09-10 09:00:14 +04:00
|
|
|
, mDescription(description)
|
|
|
|
, mIconURL(iconURL)
|
2012-07-30 18:58:26 +04:00
|
|
|
, mPrincipal(principal)
|
2011-10-17 18:59:28 +04:00
|
|
|
, mAllow(false)
|
|
|
|
, mShowHasBeenCalled(false)
|
2010-09-10 09:00:14 +04:00
|
|
|
{
|
2011-09-29 10:19:26 +04:00
|
|
|
if (Preferences::GetBool("notification.disabled", false)) {
|
2011-01-19 20:38:36 +03:00
|
|
|
return;
|
2011-05-25 10:31:59 +04:00
|
|
|
}
|
2011-01-19 20:38:36 +03:00
|
|
|
|
|
|
|
// If we are in testing mode (running mochitests, for example)
|
|
|
|
// and we are suppose to allow requests, then just post an allow event.
|
2011-09-29 10:19:26 +04:00
|
|
|
if (Preferences::GetBool("notification.prompt.testing", false) &&
|
|
|
|
Preferences::GetBool("notification.prompt.testing.allow", true)) {
|
2011-10-17 18:59:28 +04:00
|
|
|
mAllow = true;
|
2011-01-19 20:38:36 +03:00
|
|
|
}
|
2012-11-19 22:27:54 +04:00
|
|
|
}
|
2011-01-19 20:38:36 +03:00
|
|
|
|
2012-11-19 22:27:54 +04:00
|
|
|
void
|
2013-04-10 18:20:43 +04:00
|
|
|
DesktopNotification::Init()
|
2012-11-19 22:27:54 +04:00
|
|
|
{
|
2013-04-10 18:20:43 +04:00
|
|
|
nsRefPtr<DesktopNotificationRequest> request = new DesktopNotificationRequest(this);
|
2011-01-19 20:38:36 +03:00
|
|
|
|
|
|
|
NS_DispatchToMainThread(request);
|
2010-09-10 09:00:14 +04:00
|
|
|
}
|
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
DesktopNotification::~DesktopNotification()
|
2010-09-10 09:00:14 +04:00
|
|
|
{
|
|
|
|
if (mObserver) {
|
|
|
|
mObserver->Disconnect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-04-10 18:20:43 +04:00
|
|
|
DesktopNotification::DispatchNotificationEvent(const nsString& aName)
|
2010-09-10 09:00:14 +04:00
|
|
|
{
|
|
|
|
if (NS_FAILED(CheckInnerWindowCorrectness())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMEvent> event;
|
2013-03-09 15:34:29 +04:00
|
|
|
nsresult rv = NS_NewDOMEvent(getter_AddRefs(event), this, nullptr, nullptr);
|
2010-09-10 09:00:14 +04:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
// it doesn't bubble, and it isn't cancelable
|
2011-10-17 18:59:28 +04:00
|
|
|
rv = event->InitEvent(aName, false, false);
|
2010-09-10 09:00:14 +04:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2012-06-11 03:44:50 +04:00
|
|
|
event->SetTrusted(true);
|
2012-07-30 18:20:58 +04:00
|
|
|
DispatchDOMEvent(nullptr, event, nullptr, nullptr);
|
2010-09-10 09:00:14 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-27 02:25:02 +04:00
|
|
|
nsresult
|
2013-04-10 18:20:43 +04:00
|
|
|
DesktopNotification::SetAllow(bool aAllow)
|
2011-01-19 20:38:36 +03:00
|
|
|
{
|
|
|
|
mAllow = aAllow;
|
|
|
|
|
|
|
|
// if we have called Show() already, lets go ahead and post a notification
|
2013-04-10 18:20:43 +04:00
|
|
|
if (mShowHasBeenCalled && aAllow) {
|
2012-07-27 02:25:02 +04:00
|
|
|
return PostDesktopNotification();
|
2013-04-10 18:20:43 +04:00
|
|
|
}
|
2012-07-27 02:25:02 +04:00
|
|
|
|
|
|
|
return NS_OK;
|
2011-01-19 20:38:36 +03:00
|
|
|
}
|
|
|
|
|
2010-09-10 09:00:14 +04:00
|
|
|
void
|
2013-04-10 18:20:43 +04:00
|
|
|
DesktopNotification::HandleAlertServiceNotification(const char *aTopic)
|
2010-09-10 09:00:14 +04:00
|
|
|
{
|
2013-04-10 18:20:43 +04:00
|
|
|
if (NS_FAILED(CheckInnerWindowCorrectness())) {
|
2010-09-10 09:00:14 +04:00
|
|
|
return;
|
2013-04-10 18:20:43 +04:00
|
|
|
}
|
2010-09-10 09:00:14 +04:00
|
|
|
|
|
|
|
if (!strcmp("alertclickcallback", aTopic)) {
|
|
|
|
DispatchNotificationEvent(NS_LITERAL_STRING("click"));
|
|
|
|
} else if (!strcmp("alertfinished", aTopic)) {
|
|
|
|
DispatchNotificationEvent(NS_LITERAL_STRING("close"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
void
|
|
|
|
DesktopNotification::Show(ErrorResult& aRv)
|
2010-09-10 09:00:14 +04:00
|
|
|
{
|
2011-10-17 18:59:28 +04:00
|
|
|
mShowHasBeenCalled = true;
|
2010-09-14 00:44:53 +04:00
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
if (!mAllow) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
aRv = PostDesktopNotification();
|
|
|
|
}
|
2010-09-10 09:00:14 +04:00
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
JSObject*
|
2014-04-09 02:27:18 +04:00
|
|
|
DesktopNotification::WrapObject(JSContext* aCx)
|
2013-04-10 18:20:43 +04:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-09 02:27:17 +04:00
|
|
|
return DesktopNotificationBinding::Wrap(aCx, this);
|
2010-09-10 09:00:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------ */
|
2013-04-10 18:20:43 +04:00
|
|
|
/* DesktopNotificationCenter */
|
2010-09-10 09:00:14 +04:00
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE_0(DesktopNotificationCenter)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(DesktopNotificationCenter)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(DesktopNotificationCenter)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(DesktopNotificationCenter)
|
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
2010-09-10 09:00:14 +04:00
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
already_AddRefed<DesktopNotification>
|
|
|
|
DesktopNotificationCenter::CreateNotification(const nsAString& aTitle,
|
|
|
|
const nsAString& aDescription,
|
|
|
|
const nsAString& aIconURL)
|
2010-09-10 09:00:14 +04:00
|
|
|
{
|
2013-04-10 18:20:43 +04:00
|
|
|
MOZ_ASSERT(mOwner);
|
|
|
|
|
|
|
|
nsRefPtr<DesktopNotification> notification =
|
|
|
|
new DesktopNotification(aTitle,
|
|
|
|
aDescription,
|
|
|
|
aIconURL,
|
|
|
|
mOwner,
|
|
|
|
mPrincipal);
|
2012-11-19 22:27:54 +04:00
|
|
|
notification->Init();
|
2013-04-10 18:20:43 +04:00
|
|
|
return notification.forget();
|
2010-09-10 09:00:14 +04:00
|
|
|
}
|
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
JSObject*
|
2014-04-09 02:27:18 +04:00
|
|
|
DesktopNotificationCenter::WrapObject(JSContext* aCx)
|
2013-04-10 18:20:43 +04:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-09 02:27:17 +04:00
|
|
|
return DesktopNotificationCenterBinding::Wrap(aCx, this);
|
2013-04-10 18:20:43 +04:00
|
|
|
}
|
2010-09-10 09:00:14 +04:00
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------ */
|
2013-04-10 18:20:43 +04:00
|
|
|
/* DesktopNotificationRequest */
|
2010-09-10 09:00:14 +04:00
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
2014-07-14 23:21:34 +04:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(DesktopNotificationRequest, nsRunnable,
|
2014-08-01 11:22:20 +04:00
|
|
|
nsIContentPermissionRequest)
|
2010-09-10 09:00:14 +04:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-04-10 18:20:43 +04:00
|
|
|
DesktopNotificationRequest::GetPrincipal(nsIPrincipal * *aRequestingPrincipal)
|
2010-09-10 09:00:14 +04:00
|
|
|
{
|
2013-04-10 18:20:43 +04:00
|
|
|
if (!mDesktopNotification) {
|
2010-09-10 09:00:14 +04:00
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
2013-04-10 18:20:43 +04:00
|
|
|
}
|
2010-09-10 09:00:14 +04:00
|
|
|
|
2012-07-30 18:58:26 +04:00
|
|
|
NS_IF_ADDREF(*aRequestingPrincipal = mDesktopNotification->mPrincipal);
|
2010-09-10 09:00:14 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-04-10 18:20:43 +04:00
|
|
|
DesktopNotificationRequest::GetWindow(nsIDOMWindow * *aRequestingWindow)
|
2010-09-10 09:00:14 +04:00
|
|
|
{
|
2013-04-10 18:20:43 +04:00
|
|
|
if (!mDesktopNotification) {
|
2010-09-10 09:00:14 +04:00
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
2013-04-10 18:20:43 +04:00
|
|
|
}
|
2010-09-10 09:00:14 +04:00
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
NS_IF_ADDREF(*aRequestingWindow = mDesktopNotification->GetOwner());
|
2010-09-10 09:00:14 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-09-13 23:31:53 +04:00
|
|
|
NS_IMETHODIMP
|
2013-04-10 18:20:43 +04:00
|
|
|
DesktopNotificationRequest::GetElement(nsIDOMElement * *aElement)
|
2010-09-13 23:31:53 +04:00
|
|
|
{
|
2013-09-04 19:40:16 +04:00
|
|
|
NS_ENSURE_ARG_POINTER(aElement);
|
|
|
|
*aElement = nullptr;
|
|
|
|
return NS_OK;
|
2010-09-13 23:31:53 +04:00
|
|
|
}
|
|
|
|
|
2010-09-10 09:00:14 +04:00
|
|
|
NS_IMETHODIMP
|
2013-04-10 18:20:43 +04:00
|
|
|
DesktopNotificationRequest::Cancel()
|
2010-09-10 09:00:14 +04:00
|
|
|
{
|
2012-07-27 02:25:02 +04:00
|
|
|
nsresult rv = mDesktopNotification->SetAllow(false);
|
2012-07-30 18:20:58 +04:00
|
|
|
mDesktopNotification = nullptr;
|
2012-07-27 02:25:02 +04:00
|
|
|
return rv;
|
2010-09-10 09:00:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-09-10 19:41:59 +04:00
|
|
|
DesktopNotificationRequest::Allow(JS::HandleValue aChoices)
|
2010-09-10 09:00:14 +04:00
|
|
|
{
|
2013-09-10 19:41:59 +04:00
|
|
|
MOZ_ASSERT(aChoices.isUndefined());
|
2012-07-27 02:25:02 +04:00
|
|
|
nsresult rv = mDesktopNotification->SetAllow(true);
|
2012-07-30 18:20:58 +04:00
|
|
|
mDesktopNotification = nullptr;
|
2012-07-27 02:25:02 +04:00
|
|
|
return rv;
|
2010-09-10 09:00:14 +04:00
|
|
|
}
|
|
|
|
|
2010-09-13 23:31:53 +04:00
|
|
|
NS_IMETHODIMP
|
2014-02-10 00:34:40 +04:00
|
|
|
DesktopNotificationRequest::GetTypes(nsIArray** aTypes)
|
2010-09-13 23:31:53 +04:00
|
|
|
{
|
2013-09-10 19:41:59 +04:00
|
|
|
nsTArray<nsString> emptyOptions;
|
2014-08-01 11:22:20 +04:00
|
|
|
return nsContentPermissionUtils::CreatePermissionArray(NS_LITERAL_CSTRING("desktop-notification"),
|
|
|
|
NS_LITERAL_CSTRING("unused"),
|
|
|
|
emptyOptions,
|
|
|
|
aTypes);
|
2012-11-14 04:06:42 +04:00
|
|
|
}
|
2013-04-10 18:20:43 +04:00
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|