summaryrefslogtreecommitdiffstats
path: root/WebCore/plugins/Plugin.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/plugins/Plugin.idl')
-rw-r--r--WebCore/plugins/Plugin.idl9
1 files changed, 8 insertions, 1 deletions
diff --git a/WebCore/plugins/Plugin.idl b/WebCore/plugins/Plugin.idl
index 988f371..8ecef36 100644
--- a/WebCore/plugins/Plugin.idl
+++ b/WebCore/plugins/Plugin.idl
@@ -1,5 +1,6 @@
/*
Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
+ Copyright (C) 2008 Apple Inc. All rights reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
@@ -19,11 +20,17 @@
module window {
- interface [HasNameGetter, HasIndexGetter] Plugin {
+ interface [
+ GenerateConstructor,
+ HasNameGetter,
+ HasIndexGetter
+ ] Plugin {
readonly attribute DOMString name;
readonly attribute DOMString filename;
readonly attribute DOMString description;
readonly attribute unsigned long length;
+ MimeType item(in unsigned long index);
+ MimeType namedItem(in DOMString name);
};
}