2001-09-26 02:43:09 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2010-08-13 08:05:05 +04:00
|
|
|
/* vim: set ts=2 sw=2 et tw=79: */
|
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 nsMimeTypeArray_h___
|
|
|
|
#define nsMimeTypeArray_h___
|
|
|
|
|
2004-02-19 05:44:03 +03:00
|
|
|
#include "nsString.h"
|
2013-07-09 17:58:21 +04:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsWrapperCache.h"
|
2013-08-15 22:17:48 +04:00
|
|
|
#include "nsAutoPtr.h"
|
2013-08-23 09:17:11 +04:00
|
|
|
#include "nsPIDOMWindow.h"
|
1999-04-20 23:18:51 +04:00
|
|
|
|
2013-07-09 17:58:21 +04:00
|
|
|
class nsMimeType;
|
2013-08-15 22:17:48 +04:00
|
|
|
class nsPluginElement;
|
1999-04-20 23:18:51 +04:00
|
|
|
|
2013-07-09 17:58:21 +04:00
|
|
|
class nsMimeTypeArray MOZ_FINAL : public nsISupports,
|
|
|
|
public nsWrapperCache
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 21:42:36 +04:00
|
|
|
{
|
1999-04-20 23:18:51 +04:00
|
|
|
public:
|
2013-08-29 00:55:29 +04:00
|
|
|
nsMimeTypeArray(nsPIDOMWindow* aWindow);
|
2007-01-25 02:31:12 +03:00
|
|
|
virtual ~nsMimeTypeArray();
|
1999-04-20 23:18:51 +04:00
|
|
|
|
2013-07-09 17:58:21 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(nsMimeTypeArray)
|
|
|
|
|
|
|
|
nsPIDOMWindow* GetParentObject() const;
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
1999-04-20 23:18:51 +04:00
|
|
|
|
2011-12-01 12:28:16 +04:00
|
|
|
void Refresh();
|
1999-04-20 23:18:51 +04:00
|
|
|
|
2013-07-09 17:58:21 +04: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);
|
|
|
|
uint32_t Length();
|
|
|
|
void GetSupportedNames(nsTArray< nsString >& retval);
|
2008-10-22 18:31:14 +04:00
|
|
|
|
2013-07-09 17:58:21 +04:00
|
|
|
protected:
|
2013-10-20 11:05:05 +04:00
|
|
|
void EnsurePluginMimeTypes();
|
2013-07-09 17:58:21 +04:00
|
|
|
void Clear();
|
2008-10-22 18:31:14 +04:00
|
|
|
|
2013-08-29 00:55:29 +04:00
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
2010-08-13 08:05:05 +04:00
|
|
|
|
2013-11-01 09:19:09 +04: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 17:58:21 +04:00
|
|
|
nsTArray<nsRefPtr<nsMimeType> > mMimeTypes;
|
1999-04-20 23:18:51 +04:00
|
|
|
|
2013-11-01 09:19:09 +04: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;
|
1999-04-20 23:18:51 +04:00
|
|
|
};
|
|
|
|
|
2013-07-09 17:58:21 +04:00
|
|
|
class nsMimeType MOZ_FINAL : public nsWrapperCache
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 21:42:36 +04:00
|
|
|
{
|
1999-04-20 23:18:51 +04:00
|
|
|
public:
|
2013-07-09 17:58:21 +04:00
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(nsMimeType)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(nsMimeType)
|
1999-04-20 23:18:51 +04:00
|
|
|
|
2013-08-29 00:55:29 +04:00
|
|
|
nsMimeType(nsPIDOMWindow* aWindow, nsPluginElement* aPluginElement,
|
2013-07-09 17:58:21 +04:00
|
|
|
uint32_t aPluginTagMimeIndex, const nsAString& aMimeType);
|
2013-08-29 00:55:29 +04:00
|
|
|
nsMimeType(nsPIDOMWindow* aWindow, const nsAString& aMimeType);
|
2013-07-09 17:58:21 +04:00
|
|
|
virtual ~nsMimeType();
|
2010-02-11 14:03:47 +03:00
|
|
|
|
2013-07-09 17:58:21 +04:00
|
|
|
nsPIDOMWindow* GetParentObject() const;
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
2003-02-27 02:54:55 +03:00
|
|
|
|
2013-07-09 17:58:21 +04:00
|
|
|
const nsString& Type() const
|
2004-12-10 22:48:22 +03:00
|
|
|
{
|
2013-07-09 17:58:21 +04:00
|
|
|
return mType;
|
2004-12-10 22:48:22 +03:00
|
|
|
}
|
2003-02-27 02:54:55 +03:00
|
|
|
|
2013-07-09 17:58:21 +04:00
|
|
|
// MimeType WebIDL methods
|
|
|
|
void GetDescription(nsString& retval) const;
|
|
|
|
nsPluginElement *GetEnabledPlugin() const;
|
|
|
|
void GetSuffixes(nsString& retval) const;
|
|
|
|
void GetType(nsString& retval) const;
|
|
|
|
|
|
|
|
protected:
|
2013-08-29 00:55:29 +04:00
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
2013-07-09 17:58:21 +04:00
|
|
|
|
2013-07-31 04:46:46 +04: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 17:58:21 +04:00
|
|
|
uint32_t mPluginTagMimeIndex;
|
2007-01-25 02:31:12 +03:00
|
|
|
nsString mType;
|
1999-04-20 23:18:51 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsMimeTypeArray_h___ */
|