gecko/dom/base/nsContentPermissionHelper.h

59 lines
1.6 KiB
C
Raw Normal View History

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
#ifndef nsContentPermissionHelper_h
#define nsContentPermissionHelper_h
2010-05-13 11:39:14 -07:00
#include "base/basictypes.h"
#include "nsIContentPermissionPrompt.h"
2010-05-13 11:39:14 -07:00
#include "nsString.h"
#include "nsIDOMElement.h"
#include "mozilla/dom/PContentPermissionRequestParent.h"
2010-05-13 11:39:14 -07:00
class nsContentPermissionRequestProxy;
2010-05-13 11:39:14 -07:00
namespace mozilla {
namespace dom {
class ContentPermissionRequestParent : public PContentPermissionRequestParent
2010-05-13 11:39:14 -07:00
{
public:
ContentPermissionRequestParent(const nsACString& type, nsIDOMElement *element, const IPC::URI& principal);
virtual ~ContentPermissionRequestParent();
2010-05-13 11:39:14 -07:00
nsCOMPtr<nsIURI> mURI;
nsCOMPtr<nsIDOMElement> mElement;
nsCOMPtr<nsContentPermissionRequestProxy> mProxy;
nsCString mType;
2010-05-13 11:39:14 -07:00
private:
virtual bool Recvprompt();
virtual void ActorDestroy(ActorDestroyReason why);
2010-05-13 11:39:14 -07:00
};
} // namespace dom
2010-05-13 11:39:14 -07:00
} // namespace mozilla
class nsContentPermissionRequestProxy : public nsIContentPermissionRequest
2010-05-13 11:39:14 -07:00
{
public:
nsContentPermissionRequestProxy();
virtual ~nsContentPermissionRequestProxy();
2010-05-13 11:39:14 -07:00
nsresult Init(const nsACString& type, mozilla::dom::ContentPermissionRequestParent* parent);
void OnParentDestroyed();
2010-05-13 11:39:14 -07:00
NS_DECL_ISUPPORTS
NS_DECL_NSICONTENTPERMISSIONREQUEST
2010-05-13 11:39:14 -07:00
private:
// 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
};
#endif // nsContentPermissionHelper_h
2010-05-13 11:39:14 -07:00