summaryrefslogtreecommitdiffstats
path: root/WebCore/plugins/PluginArray.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/plugins/PluginArray.idl')
-rw-r--r--WebCore/plugins/PluginArray.idl9
1 files changed, 8 insertions, 1 deletions
diff --git a/WebCore/plugins/PluginArray.idl b/WebCore/plugins/PluginArray.idl
index 58f68b5..4a55c56 100644
--- a/WebCore/plugins/PluginArray.idl
+++ b/WebCore/plugins/PluginArray.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,8 +20,14 @@
module window {
- interface [HasNameGetter, HasIndexGetter] PluginArray {
+ interface [
+ GenerateConstructor,
+ HasNameGetter,
+ HasIndexGetter
+ ] PluginArray {
readonly attribute unsigned long length;
+ Plugin item(in unsigned long index);
+ Plugin namedItem(in DOMString name);
void refresh(in boolean reload);
};