Chromium Code Reviews| Index: Source/core/plugins/DOMPlugin.h |
| diff --git a/Source/core/plugins/DOMPlugin.h b/Source/core/plugins/DOMPlugin.h |
| index d9b1eb76cfe86101614f361248e149a99b194e0b..fa65605547086609d6881bf7d7802cbd133d53ab 100644 |
| --- a/Source/core/plugins/DOMPlugin.h |
| +++ b/Source/core/plugins/DOMPlugin.h |
| @@ -34,6 +34,7 @@ class Plugin; |
| class PluginData; |
| class DOMPlugin FINAL : public RefCountedWillBeGarbageCollectedFinalized<DOMPlugin>, public ScriptWrappable, public FrameDestructionObserver { |
| + WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMPlugin); |
| DEFINE_WRAPPERTYPEINFO(); |
| public: |
| static PassRefPtrWillBeRawPtr<DOMPlugin> create(PluginData* pluginData, LocalFrame* frame, unsigned index) |
| @@ -52,7 +53,7 @@ public: |
| bool canGetItemsForName(const AtomicString& propertyName); |
| PassRefPtrWillBeRawPtr<DOMMimeType> namedItem(const AtomicString& propertyName); |
| - void trace(Visitor*) { } |
| + virtual void trace(Visitor*) OVERRIDE; |
|
haraken
2014/09/11 14:47:25
Nit: We won't need this.
|
| private: |
| const PluginInfo& pluginInfo() const { return m_pluginData->plugins()[m_index]; } |