gecko-dev/dom/base/nsPluginArray.h

113 строки
2.9 KiB
C
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
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/. */
1999-04-20 23:18:51 +04:00
#ifndef nsPluginArray_h___
#define nsPluginArray_h___
#include "nsCOMPtr.h"
1999-04-20 23:18:51 +04:00
#include "nsIDOMPluginArray.h"
#include "nsIDOMPlugin.h"
#include "nsIPluginHost.h"
#include "nsIURL.h"
#include "nsWeakReference.h"
1999-04-20 23:18:51 +04:00
namespace mozilla {
namespace dom {
class Navigator;
} // namespace dom
} // namespace mozilla
class nsIDocShell;
1999-04-20 23:18:51 +04:00
// NB: Due to weak references, Navigator has intimate knowledge of our
2010-08-13 08:05:05 +04:00
// internals.
class nsPluginArray : public nsIDOMPluginArray
{
1999-04-20 23:18:51 +04:00
public:
nsPluginArray(mozilla::dom::Navigator* navigator, nsIDocShell *aDocShell);
virtual ~nsPluginArray();
1999-04-20 23:18:51 +04:00
NS_DECL_ISUPPORTS
// nsIDOMPluginArray
NS_DECL_NSIDOMPLUGINARRAY
1999-04-20 23:18:51 +04: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*>(aSupports);
}
1999-04-20 23:18:51 +04:00
private:
nsresult GetPlugins();
bool AllowPlugins();
1999-04-20 23:18:51 +04:00
public:
2010-08-13 08:05:05 +04:00
void Invalidate();
1999-04-20 23:18:51 +04:00
protected:
mozilla::dom::Navigator* mNavigator;
nsCOMPtr<nsIPluginHost> mPluginHost;
uint32_t mPluginCount;
1999-04-20 23:18:51 +04:00
nsIDOMPlugin** mPluginArray;
nsWeakPtr mDocShell;
1999-04-20 23:18:51 +04:00
};
class nsPluginElement : public nsIDOMPlugin
{
1999-04-20 23:18:51 +04:00
public:
nsPluginElement(nsIDOMPlugin* plugin);
virtual ~nsPluginElement();
1999-04-20 23:18:51 +04:00
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMPLUGIN
1999-04-20 23:18:51 +04: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 23:18:51 +04:00
private:
nsresult GetMimeTypes();
protected:
nsIDOMPlugin* mPlugin;
uint32_t mMimeTypeCount;
1999-04-20 23:18:51 +04:00
nsIDOMMimeType** mMimeTypeArray;
};
#endif /* nsPluginArray_h___ */