gecko-dev/dom/base/nsPluginArray.h

124 lines
3.3 KiB
C
Raw Normal View History

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2012-05-21 11:12:37 +00: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/. */
1999-04-20 19:18:51 +00:00
#ifndef nsPluginArray_h___
#define nsPluginArray_h___
#include "nsCOMPtr.h"
1999-04-20 19:18:51 +00:00
#include "nsIDOMPluginArray.h"
#include "nsIDOMPlugin.h"
#include "nsIPluginHost.h"
#include "nsIURL.h"
#include "nsWeakReference.h"
#include "nsIObserver.h"
1999-04-20 19:18:51 +00:00
namespace mozilla {
namespace dom {
class Navigator;
} // namespace dom
} // namespace mozilla
class nsIDocShell;
1999-04-20 19:18:51 +00:00
// NB: Due to weak references, Navigator has intimate knowledge of our
2010-08-13 04:05:05 +00:00
// internals.
class nsPluginArray : public nsIDOMPluginArray
, public nsIObserver
, public nsSupportsWeakReference
{
1999-04-20 19:18:51 +00:00
public:
nsPluginArray(mozilla::dom::Navigator* navigator, nsIDocShell *aDocShell);
virtual ~nsPluginArray();
1999-04-20 19:18:51 +00:00
NS_DECL_ISUPPORTS
// nsIDOMPluginArray
NS_DECL_NSIDOMPLUGINARRAY
// nsIObserver
NS_DECL_NSIOBSERVER
// nsPluginArray registers itself as an observer with a weak reference.
// This can't be done in the constructor, because at that point its
// refcount is 0 (and it gets destroyed upon registration). So, Init()
// must be called after construction.
void Init();
1999-04-20 19:18:51 +00:00
nsresult GetPluginHost(nsIPluginHost** aPluginHost);
nsIDOMPlugin* GetItemAt(uint32_t aIndex, nsresult* aResult);
nsIDOMPlugin* GetNamedItem(const nsAString& aName, nsresult* aResult);
static nsPluginArray* FromSupports(nsISupports* aSupports)
{
#ifdef DEBUG
{
nsCOMPtr<nsIDOMPluginArray> array_qi = do_QueryInterface(aSupports);
// If this assertion fires the QI implementation for the object in
// question doesn't use the nsIDOMPluginArray pointer as the nsISupports
// pointer. That must be fixed, or we'll crash...
NS_ASSERTION(array_qi == static_cast<nsIDOMPluginArray*>(aSupports),
"Uh, fix QI!");
}
#endif
return static_cast<nsPluginArray*>(static_cast<nsIDOMPluginArray*>(aSupports));
}
1999-04-20 19:18:51 +00:00
private:
nsresult GetPlugins();
bool AllowPlugins();
1999-04-20 19:18:51 +00:00
public:
2010-08-13 04:05:05 +00:00
void Invalidate();
1999-04-20 19:18:51 +00:00
protected:
mozilla::dom::Navigator* mNavigator;
nsCOMPtr<nsIPluginHost> mPluginHost;
uint32_t mPluginCount;
1999-04-20 19:18:51 +00:00
nsIDOMPlugin** mPluginArray;
nsWeakPtr mDocShell;
1999-04-20 19:18:51 +00:00
};
class nsPluginElement : public nsIDOMPlugin
{
1999-04-20 19:18:51 +00:00
public:
nsPluginElement(nsIDOMPlugin* plugin);
virtual ~nsPluginElement();
1999-04-20 19:18:51 +00:00
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMPLUGIN
1999-04-20 19:18:51 +00:00
nsIDOMMimeType* GetItemAt(uint32_t aIndex, nsresult* aResult);
nsIDOMMimeType* GetNamedItem(const nsAString& aName, nsresult* aResult);
static nsPluginElement* FromSupports(nsISupports* aSupports)
{
#ifdef DEBUG
{
nsCOMPtr<nsIDOMPlugin> plugin_qi = do_QueryInterface(aSupports);
// If this assertion fires the QI implementation for the object in
// question doesn't use the nsIDOMPlugin pointer as the nsISupports
// pointer. That must be fixed, or we'll crash...
NS_ASSERTION(plugin_qi == static_cast<nsIDOMPlugin*>(aSupports),
"Uh, fix QI!");
}
#endif
return static_cast<nsPluginElement*>(aSupports);
}
1999-04-20 19:18:51 +00:00
private:
nsresult GetMimeTypes();
protected:
nsIDOMPlugin* mPlugin;
uint32_t mMimeTypeCount;
1999-04-20 19:18:51 +00:00
nsIDOMMimeType** mMimeTypeArray;
};
#endif /* nsPluginArray_h___ */