| 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 | 3 |
| 4 This library is free software; you can redistribute it and/or | 4 This library is free software; you can redistribute it and/or |
| 5 modify it under the terms of the GNU Library General Public | 5 modify it under the terms of the GNU Library General Public |
| 6 License as published by the Free Software Foundation; either | 6 License as published by the Free Software Foundation; either |
| 7 version 2 of the License, or (at your option) any later version. | 7 version 2 of the License, or (at your option) any later version. |
| 8 | 8 |
| 9 This library is distributed in the hope that it will be useful, | 9 This library is distributed in the hope that it will be useful, |
| 10 but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "wtf/Forward.h" | 27 #include "wtf/Forward.h" |
| 28 #include "wtf/PassRefPtr.h" | 28 #include "wtf/PassRefPtr.h" |
| 29 #include "wtf/RefCounted.h" | 29 #include "wtf/RefCounted.h" |
| 30 #include "wtf/RefPtr.h" | 30 #include "wtf/RefPtr.h" |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 | 33 |
| 34 class DOMPlugin; | 34 class DOMPlugin; |
| 35 class LocalFrame; | 35 class LocalFrame; |
| 36 | 36 |
| 37 class DOMMimeType FINAL : public RefCountedWillBeGarbageCollectedFinalized<DOMMi
meType>, public ScriptWrappable, public FrameDestructionObserver { | 37 class DOMMimeType final : public RefCountedWillBeGarbageCollectedFinalized<DOMMi
meType>, public ScriptWrappable, public FrameDestructionObserver { |
| 38 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMMimeType); | 38 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMMimeType); |
| 39 DEFINE_WRAPPERTYPEINFO(); | 39 DEFINE_WRAPPERTYPEINFO(); |
| 40 public: | 40 public: |
| 41 static PassRefPtrWillBeRawPtr<DOMMimeType> create(PassRefPtr<PluginData> plu
ginData, LocalFrame* frame, unsigned index) | 41 static PassRefPtrWillBeRawPtr<DOMMimeType> create(PassRefPtr<PluginData> plu
ginData, LocalFrame* frame, unsigned index) |
| 42 { | 42 { |
| 43 return adoptRefWillBeNoop(new DOMMimeType(pluginData, frame, index)); | 43 return adoptRefWillBeNoop(new DOMMimeType(pluginData, frame, index)); |
| 44 } | 44 } |
| 45 virtual ~DOMMimeType(); | 45 virtual ~DOMMimeType(); |
| 46 | 46 |
| 47 const String& type() const; | 47 const String& type() const; |
| 48 String suffixes() const; | 48 String suffixes() const; |
| 49 const String& description() const; | 49 const String& description() const; |
| 50 PassRefPtrWillBeRawPtr<DOMPlugin> enabledPlugin() const; | 50 PassRefPtrWillBeRawPtr<DOMPlugin> enabledPlugin() const; |
| 51 | 51 |
| 52 virtual void trace(Visitor*) OVERRIDE; | 52 virtual void trace(Visitor*) override; |
| 53 | 53 |
| 54 private: | 54 private: |
| 55 const MimeClassInfo& mimeClassInfo() const { return m_pluginData->mimes()[m_
index]; } | 55 const MimeClassInfo& mimeClassInfo() const { return m_pluginData->mimes()[m_
index]; } |
| 56 | 56 |
| 57 DOMMimeType(PassRefPtr<PluginData>, LocalFrame*, unsigned index); | 57 DOMMimeType(PassRefPtr<PluginData>, LocalFrame*, unsigned index); |
| 58 RefPtr<PluginData> m_pluginData; | 58 RefPtr<PluginData> m_pluginData; |
| 59 unsigned m_index; | 59 unsigned m_index; |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace blink | 62 } // namespace blink |
| 63 | 63 |
| 64 #endif // DOMMimeType_h | 64 #endif // DOMMimeType_h |
| OLD | NEW |