| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 2 Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 3 Copyright (C) 2008 Apple Inc. All rights reserved. | 3 Copyright (C) 2008 Apple Inc. All rights reserved. |
| 4 | 4 |
| 5 This library is free software; you can redistribute it and/or | 5 This library is free software; you can redistribute it and/or |
| 6 modify it under the terms of the GNU Library General Public | 6 modify it under the terms of the GNU Library General Public |
| 7 License as published by the Free Software Foundation; either | 7 License as published by the Free Software Foundation; either |
| 8 version 2 of the License, or (at your option) any later version. | 8 version 2 of the License, or (at your option) any later version. |
| 9 | 9 |
| 10 This library is distributed in the hope that it will be useful, | 10 This library is distributed in the hope that it will be useful, |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "platform/heap/Handle.h" | 27 #include "platform/heap/Handle.h" |
| 28 #include "wtf/Forward.h" | 28 #include "wtf/Forward.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 | 31 |
| 32 class LocalFrame; | 32 class LocalFrame; |
| 33 class PluginData; | 33 class PluginData; |
| 34 | 34 |
| 35 class DOMPluginArray final : public GarbageCollectedFinalized<DOMPluginArray>, p
ublic ScriptWrappable, public DOMWindowProperty { | 35 class DOMPluginArray final : public GarbageCollectedFinalized<DOMPluginArray>, p
ublic ScriptWrappable, public DOMWindowProperty { |
| 36 DEFINE_WRAPPERTYPEINFO(); | 36 DEFINE_WRAPPERTYPEINFO(); |
| 37 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMPluginArray); | 37 USING_GARBAGE_COLLECTED_MIXIN(DOMPluginArray); |
| 38 public: | 38 public: |
| 39 static DOMPluginArray* create(LocalFrame* frame) | 39 static DOMPluginArray* create(LocalFrame* frame) |
| 40 { | 40 { |
| 41 return new DOMPluginArray(frame); | 41 return new DOMPluginArray(frame); |
| 42 } | 42 } |
| 43 | 43 |
| 44 unsigned length() const; | 44 unsigned length() const; |
| 45 DOMPlugin* item(unsigned index); | 45 DOMPlugin* item(unsigned index); |
| 46 DOMPlugin* namedItem(const AtomicString& propertyName); | 46 DOMPlugin* namedItem(const AtomicString& propertyName); |
| 47 | 47 |
| 48 void refresh(bool reload); | 48 void refresh(bool reload); |
| 49 | 49 |
| 50 DECLARE_VIRTUAL_TRACE(); | 50 DECLARE_VIRTUAL_TRACE(); |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 explicit DOMPluginArray(LocalFrame*); | 53 explicit DOMPluginArray(LocalFrame*); |
| 54 PluginData* pluginData() const; | 54 PluginData* pluginData() const; |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace blink | 57 } // namespace blink |
| 58 | 58 |
| 59 #endif // DOMPluginArray_h | 59 #endif // DOMPluginArray_h |
| OLD | NEW |