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/. */
|
2010-05-13 22:39:14 +04:00
|
|
|
|
2010-09-13 23:49:27 +04:00
|
|
|
#ifndef nsContentPermissionHelper_h
|
|
|
|
#define nsContentPermissionHelper_h
|
2010-05-13 22:39:14 +04:00
|
|
|
|
2010-09-10 08:59:51 +04:00
|
|
|
#include "nsIContentPermissionPrompt.h"
|
2010-05-13 22:39:14 +04:00
|
|
|
#include "nsString.h"
|
|
|
|
|
2012-07-30 18:58:26 +04:00
|
|
|
#include "mozilla/dom/PermissionMessageUtils.h"
|
2010-09-10 09:00:08 +04:00
|
|
|
#include "mozilla/dom/PContentPermissionRequestParent.h"
|
2010-05-13 22:39:14 +04:00
|
|
|
|
2010-09-13 23:49:27 +04:00
|
|
|
class nsContentPermissionRequestProxy;
|
2010-05-13 22:39:14 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-07-24 03:39:17 +04:00
|
|
|
class Element;
|
|
|
|
|
2010-09-13 23:49:27 +04:00
|
|
|
class ContentPermissionRequestParent : public PContentPermissionRequestParent
|
2010-05-13 22:39:14 +04:00
|
|
|
{
|
|
|
|
public:
|
2013-07-24 03:39:17 +04:00
|
|
|
ContentPermissionRequestParent(const nsACString& type,
|
|
|
|
const nsACString& access,
|
|
|
|
Element* element,
|
|
|
|
const IPC::Principal& principal);
|
2010-09-13 23:49:27 +04:00
|
|
|
virtual ~ContentPermissionRequestParent();
|
2012-07-30 18:58:26 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsIPrincipal> mPrincipal;
|
2013-07-24 03:39:17 +04:00
|
|
|
nsCOMPtr<Element> mElement;
|
2010-09-13 23:49:27 +04:00
|
|
|
nsCOMPtr<nsContentPermissionRequestProxy> mProxy;
|
|
|
|
nsCString mType;
|
2012-11-14 04:06:42 +04:00
|
|
|
nsCString mAccess;
|
2010-05-13 22:39:14 +04:00
|
|
|
|
2012-07-30 18:58:26 +04:00
|
|
|
private:
|
2010-05-13 22:39:14 +04:00
|
|
|
virtual bool Recvprompt();
|
2011-02-09 22:07:43 +03:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why);
|
2010-05-13 22:39:14 +04:00
|
|
|
};
|
2012-07-30 18:58:26 +04:00
|
|
|
|
2010-08-07 05:20:53 +04:00
|
|
|
} // namespace dom
|
2010-05-13 22:39:14 +04:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2010-09-13 23:49:27 +04:00
|
|
|
class nsContentPermissionRequestProxy : public nsIContentPermissionRequest
|
2010-05-13 22:39:14 +04:00
|
|
|
{
|
|
|
|
public:
|
2010-09-13 23:49:27 +04:00
|
|
|
nsContentPermissionRequestProxy();
|
|
|
|
virtual ~nsContentPermissionRequestProxy();
|
2012-07-30 18:58:26 +04:00
|
|
|
|
2012-11-14 04:06:42 +04:00
|
|
|
nsresult Init(const nsACString& type, const nsACString& access, mozilla::dom::ContentPermissionRequestParent* parent);
|
2011-02-09 22:07:43 +03:00
|
|
|
void OnParentDestroyed();
|
2012-07-30 18:58:26 +04:00
|
|
|
|
2010-11-16 11:22:41 +03:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTPERMISSIONREQUEST
|
2010-05-13 22:39:14 +04:00
|
|
|
|
|
|
|
private:
|
2010-09-13 23:49:27 +04:00
|
|
|
// Non-owning pointer to the ContentPermissionRequestParent object which owns this proxy.
|
|
|
|
mozilla::dom::ContentPermissionRequestParent* mParent;
|
|
|
|
nsCString mType;
|
2012-11-14 04:06:42 +04:00
|
|
|
nsCString mAccess;
|
2010-05-13 22:39:14 +04:00
|
|
|
};
|
2010-09-13 23:49:27 +04:00
|
|
|
#endif // nsContentPermissionHelper_h
|
2010-05-13 22:39:14 +04:00
|
|
|
|