2012-05-21 04:12:37 -07: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/. */
|
2010-05-13 11:39:14 -07:00
|
|
|
|
2010-09-13 12:49:27 -07:00
|
|
|
#ifndef nsContentPermissionHelper_h
|
|
|
|
#define nsContentPermissionHelper_h
|
2010-05-13 11:39:14 -07:00
|
|
|
|
2010-09-09 21:59:51 -07:00
|
|
|
#include "nsIContentPermissionPrompt.h"
|
2014-02-09 12:34:40 -08:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsIMutableArray.h"
|
2014-08-01 00:22:20 -07:00
|
|
|
#include "mozilla/dom/PContentPermissionRequestChild.h"
|
|
|
|
// Microsoft's API Name hackery sucks
|
|
|
|
// XXXbz Doing this in a header is a gigantic footgun. See
|
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=932421#c3 for why.
|
|
|
|
#undef LoadImage
|
2013-11-05 00:29:52 -08:00
|
|
|
|
2014-07-07 21:45:23 -07:00
|
|
|
class nsPIDOMWindow;
|
2013-12-09 22:03:21 -08:00
|
|
|
class nsContentPermissionRequestProxy;
|
2013-12-06 14:38:52 -08:00
|
|
|
|
2014-02-09 12:34:40 -08:00
|
|
|
// Forward declare IPC::Principal here which is defined in
|
|
|
|
// PermissionMessageUtils.h. Include this file will transitively includes
|
|
|
|
// "windows.h" and it defines
|
|
|
|
// #define CreateEvent CreateEventW
|
|
|
|
// #define LoadImage LoadImageW
|
|
|
|
// That will mess up windows build.
|
|
|
|
namespace IPC {
|
|
|
|
class Principal;
|
|
|
|
}
|
|
|
|
|
2010-05-13 11:39:14 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-07-23 16:39:17 -07:00
|
|
|
class Element;
|
2014-02-09 12:34:40 -08:00
|
|
|
class PermissionRequest;
|
|
|
|
class ContentPermissionRequestParent;
|
|
|
|
class PContentPermissionRequestParent;
|
2013-07-23 16:39:17 -07:00
|
|
|
|
2014-02-09 12:34:40 -08:00
|
|
|
class ContentPermissionType : public nsIContentPermissionType
|
2010-05-13 11:39:14 -07:00
|
|
|
{
|
2014-02-09 12:34:40 -08:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTPERMISSIONTYPE
|
2012-07-30 07:58:26 -07:00
|
|
|
|
2013-09-10 08:41:59 -07:00
|
|
|
ContentPermissionType(const nsACString& aType,
|
|
|
|
const nsACString& aAccess,
|
|
|
|
const nsTArray<nsString>& aOptions);
|
2013-10-16 15:25:50 -07:00
|
|
|
|
2014-02-09 12:34:40 -08:00
|
|
|
protected:
|
2014-06-23 12:56:07 -07:00
|
|
|
virtual ~ContentPermissionType();
|
|
|
|
|
2010-09-13 12:49:27 -07:00
|
|
|
nsCString mType;
|
2012-11-13 16:06:42 -08:00
|
|
|
nsCString mAccess;
|
2013-09-10 08:41:59 -07:00
|
|
|
nsTArray<nsString> mOptions;
|
2013-12-09 22:03:21 -08:00
|
|
|
};
|
2013-12-06 14:38:52 -08:00
|
|
|
|
2014-08-01 00:22:20 -07:00
|
|
|
class nsContentPermissionUtils
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static uint32_t
|
|
|
|
ConvertPermissionRequestToArray(nsTArray<PermissionRequest>& aSrcArray,
|
|
|
|
nsIMutableArray* aDesArray);
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
ConvertArrayToPermissionRequest(nsIArray* aSrcArray,
|
|
|
|
nsTArray<PermissionRequest>& aDesArray);
|
2014-02-09 12:34:40 -08:00
|
|
|
|
2014-08-01 00:22:20 -07:00
|
|
|
static nsresult
|
|
|
|
CreatePermissionArray(const nsACString& aType,
|
|
|
|
const nsACString& aAccess,
|
|
|
|
const nsTArray<nsString>& aOptions,
|
|
|
|
nsIArray** aTypesArray);
|
|
|
|
|
|
|
|
static PContentPermissionRequestParent*
|
|
|
|
CreateContentPermissionRequestParent(const nsTArray<PermissionRequest>& aRequests,
|
|
|
|
Element* element,
|
|
|
|
const IPC::Principal& principal);
|
2014-02-09 12:34:40 -08:00
|
|
|
|
2014-08-01 00:22:20 -07:00
|
|
|
static nsresult
|
|
|
|
AskPermission(nsIContentPermissionRequest* aRequest, nsPIDOMWindow* aWindow);
|
|
|
|
};
|
2014-02-09 12:34:40 -08:00
|
|
|
|
2010-08-06 18:20:53 -07:00
|
|
|
} // namespace dom
|
2010-05-13 11:39:14 -07:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2010-09-13 12:49:27 -07:00
|
|
|
class nsContentPermissionRequestProxy : public nsIContentPermissionRequest
|
2010-05-13 11:39:14 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-02-09 12:34:40 -08:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTPERMISSIONREQUEST
|
|
|
|
|
2010-09-13 12:49:27 -07:00
|
|
|
nsContentPermissionRequestProxy();
|
2012-07-30 07:58:26 -07:00
|
|
|
|
2014-02-09 12:34:40 -08:00
|
|
|
nsresult Init(const nsTArray<mozilla::dom::PermissionRequest>& requests,
|
|
|
|
mozilla::dom::ContentPermissionRequestParent* parent);
|
2014-08-01 00:22:20 -07:00
|
|
|
|
2011-02-09 11:07:43 -08:00
|
|
|
void OnParentDestroyed();
|
2012-07-30 07:58:26 -07:00
|
|
|
|
2010-05-13 11:39:14 -07:00
|
|
|
private:
|
2014-06-23 12:56:07 -07:00
|
|
|
virtual ~nsContentPermissionRequestProxy();
|
|
|
|
|
2010-09-13 12:49:27 -07:00
|
|
|
// Non-owning pointer to the ContentPermissionRequestParent object which owns this proxy.
|
|
|
|
mozilla::dom::ContentPermissionRequestParent* mParent;
|
2014-02-09 12:34:40 -08:00
|
|
|
nsTArray<mozilla::dom::PermissionRequest> mPermissionRequests;
|
2010-05-13 11:39:14 -07:00
|
|
|
};
|
2013-12-09 22:03:21 -08:00
|
|
|
|
2014-07-07 21:45:23 -07:00
|
|
|
/**
|
|
|
|
* RemotePermissionRequest will send a prompt ipdl request to b2g process.
|
|
|
|
*/
|
2014-08-01 00:22:20 -07:00
|
|
|
class RemotePermissionRequest MOZ_FINAL : public nsISupports
|
|
|
|
, public mozilla::dom::PContentPermissionRequestChild
|
2014-07-07 21:45:23 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
RemotePermissionRequest(nsIContentPermissionRequest* aRequest,
|
|
|
|
nsPIDOMWindow* aWindow);
|
|
|
|
|
|
|
|
// It will be called when prompt dismissed.
|
|
|
|
virtual bool Recv__delete__(const bool &aAllow,
|
|
|
|
const nsTArray<PermissionChoice>& aChoices) MOZ_OVERRIDE;
|
|
|
|
|
2014-08-01 00:22:20 -07:00
|
|
|
void IPDLAddRef()
|
|
|
|
{
|
|
|
|
mIPCOpen = true;
|
|
|
|
AddRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
void IPDLRelease()
|
|
|
|
{
|
|
|
|
mIPCOpen = false;
|
|
|
|
Release();
|
|
|
|
}
|
|
|
|
|
2014-07-07 21:45:23 -07:00
|
|
|
private:
|
2014-08-01 00:22:20 -07:00
|
|
|
virtual ~RemotePermissionRequest()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mIPCOpen, "Protocol must not be open when RemotePermissionRequest is destroyed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
void DoAllow(JS::HandleValue aChoices);
|
|
|
|
void DoCancel();
|
2014-07-07 21:45:23 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIContentPermissionRequest> mRequest;
|
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
2014-08-01 00:22:20 -07:00
|
|
|
bool mIPCOpen;
|
2014-07-07 21:45:23 -07:00
|
|
|
};
|
|
|
|
|
2014-02-09 12:34:40 -08:00
|
|
|
#endif // nsContentPermissionHelper_h
|