2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2010-08-12 21:05:05 -07:00
|
|
|
/* vim: set ts=2 sw=2 et tw=79: */
|
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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsMimeTypeArray_h___
|
|
|
|
#define nsMimeTypeArray_h___
|
|
|
|
|
|
|
|
#include "nsString.h"
|
2013-07-09 06:58:21 -07:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsWrapperCache.h"
|
2013-08-15 11:17:48 -07:00
|
|
|
#include "nsAutoPtr.h"
|
2013-08-22 22:17:11 -07:00
|
|
|
#include "nsPIDOMWindow.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-07-09 06:58:21 -07:00
|
|
|
class nsMimeType;
|
2013-08-15 11:17:48 -07:00
|
|
|
class nsPluginElement;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-07-09 06:58:21 -07:00
|
|
|
class nsMimeTypeArray MOZ_FINAL : public nsISupports,
|
|
|
|
public nsWrapperCache
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-09-01 17:49:25 -07:00
|
|
|
explicit nsMimeTypeArray(nsPIDOMWindow* aWindow);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-07-09 06:58:21 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(nsMimeTypeArray)
|
|
|
|
|
|
|
|
nsPIDOMWindow* GetParentObject() const;
|
2014-04-08 15:27:18 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-12-01 00:28:16 -08:00
|
|
|
void Refresh();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-07-09 06:58:21 -07:00
|
|
|
// MimeTypeArray WebIDL methods
|
|
|
|
nsMimeType* Item(uint32_t index);
|
|
|
|
nsMimeType* NamedItem(const nsAString& name);
|
|
|
|
nsMimeType* IndexedGetter(uint32_t index, bool &found);
|
|
|
|
nsMimeType* NamedGetter(const nsAString& name, bool &found);
|
2014-04-15 19:58:44 -07:00
|
|
|
bool NameIsEnumerable(const nsAString& name);
|
2013-07-09 06:58:21 -07:00
|
|
|
uint32_t Length();
|
2014-04-15 19:58:44 -07:00
|
|
|
void GetSupportedNames(unsigned, nsTArray< nsString >& retval);
|
2008-10-22 07:31:14 -07:00
|
|
|
|
2013-07-09 06:58:21 -07:00
|
|
|
protected:
|
2014-06-23 12:56:07 -07:00
|
|
|
virtual ~nsMimeTypeArray();
|
|
|
|
|
2013-10-20 00:05:05 -07:00
|
|
|
void EnsurePluginMimeTypes();
|
2013-07-09 06:58:21 -07:00
|
|
|
void Clear();
|
2008-10-22 07:31:14 -07:00
|
|
|
|
2013-08-28 13:55:29 -07:00
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
2010-08-12 21:05:05 -07:00
|
|
|
|
2013-10-31 22:19:09 -07:00
|
|
|
// mMimeTypes contains MIME types handled by non-hidden plugins, those
|
|
|
|
// popular plugins that must be exposed in navigator.plugins enumeration to
|
|
|
|
// avoid breaking web content. Likewise, mMimeTypes are exposed in
|
|
|
|
// navigator.mimeTypes enumeration.
|
2013-07-09 06:58:21 -07:00
|
|
|
nsTArray<nsRefPtr<nsMimeType> > mMimeTypes;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-10-31 22:19:09 -07:00
|
|
|
// mHiddenMimeTypes contains MIME types handled by plugins hidden from
|
|
|
|
// navigator.plugins enumeration or by an OS PreferredApplicationHandler.
|
|
|
|
// mHiddenMimeTypes are hidden from navigator.mimeTypes enumeration.
|
|
|
|
nsTArray<nsRefPtr<nsMimeType> > mHiddenMimeTypes;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2013-07-09 06:58:21 -07:00
|
|
|
class nsMimeType MOZ_FINAL : public nsWrapperCache
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2013-07-09 06:58:21 -07:00
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(nsMimeType)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(nsMimeType)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-08-28 13:55:29 -07:00
|
|
|
nsMimeType(nsPIDOMWindow* aWindow, nsPluginElement* aPluginElement,
|
2013-07-09 06:58:21 -07:00
|
|
|
uint32_t aPluginTagMimeIndex, const nsAString& aMimeType);
|
2013-08-28 13:55:29 -07:00
|
|
|
nsMimeType(nsPIDOMWindow* aWindow, const nsAString& aMimeType);
|
2013-07-09 06:58:21 -07:00
|
|
|
nsPIDOMWindow* GetParentObject() const;
|
2014-04-08 15:27:18 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-07-09 06:58:21 -07:00
|
|
|
const nsString& Type() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-07-09 06:58:21 -07:00
|
|
|
return mType;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-07-09 06:58:21 -07:00
|
|
|
// MimeType WebIDL methods
|
|
|
|
void GetDescription(nsString& retval) const;
|
|
|
|
nsPluginElement *GetEnabledPlugin() const;
|
|
|
|
void GetSuffixes(nsString& retval) const;
|
|
|
|
void GetType(nsString& retval) const;
|
|
|
|
|
|
|
|
protected:
|
2014-06-23 12:56:07 -07:00
|
|
|
virtual ~nsMimeType();
|
|
|
|
|
2013-08-28 13:55:29 -07:00
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
2013-07-09 06:58:21 -07:00
|
|
|
|
2013-07-30 17:46:46 -07:00
|
|
|
// Strong reference to the active plugin, if any. Note that this
|
|
|
|
// creates an explicit reference cycle through the plugin element's
|
|
|
|
// mimetype array. We rely on the cycle collector to break this
|
|
|
|
// cycle.
|
|
|
|
nsRefPtr<nsPluginElement> mPluginElement;
|
2013-07-09 06:58:21 -07:00
|
|
|
uint32_t mPluginTagMimeIndex;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsString mType;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsMimeTypeArray_h___ */
|