| Index: third_party/WebKit/Source/modules/plugins/DOMMimeTypeArray.h
|
| diff --git a/third_party/WebKit/Source/modules/plugins/DOMMimeTypeArray.h b/third_party/WebKit/Source/modules/plugins/DOMMimeTypeArray.h
|
| index c7c3ffb97f862755c887718f6ae1e53119678ca8..c224fc014c39799adf7212e8b0dc4becf4856f7a 100644
|
| --- a/third_party/WebKit/Source/modules/plugins/DOMMimeTypeArray.h
|
| +++ b/third_party/WebKit/Source/modules/plugins/DOMMimeTypeArray.h
|
| @@ -42,6 +42,7 @@ public:
|
| }
|
|
|
| unsigned length() const;
|
| + DOMMimeType* getMimeType(unsigned index);
|
| DOMMimeType* item(unsigned index);
|
| DOMMimeType* namedItem(const AtomicString& propertyName);
|
|
|
| @@ -50,6 +51,9 @@ public:
|
| private:
|
| explicit DOMMimeTypeArray(LocalFrame*);
|
| PluginData* getPluginData() const;
|
| + using MimeTypeMap = HeapHashMap<unsigned, Member<DOMMimeType>, DefaultHash<unsigned>::Hash, WTF::UnsignedWithZeroKeyHashTraits<unsigned>>;
|
| + MimeTypeMap m_mimeTypes;
|
| + double m_modified;
|
| };
|
|
|
| } // namespace blink
|
|
|