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