HomeSort by relevance Sort by last modified time
    Searched defs:MimeType (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebKit/qt/Api/
qwebplugindatabase_p.h 46 typedef QWebPluginFactory::MimeType MimeType;
50 QList<MimeType> mimeTypes() const;
51 bool supportsMimeType(const QString& mimeType) const;
67 mutable QList<MimeType> m_mimeTypes;
88 QWebPluginInfo pluginForMimeType(const QString& mimeType);
89 void setPreferredPluginForMimeType(const QString& mimeType, const QWebPluginInfo& plugin);
qwebpluginfactory.h 37 struct QWEBKIT_EXPORT MimeType {
41 bool operator==(const MimeType& other) const;
42 inline bool operator!=(const MimeType& other) const { return !operator==(other); }
48 QList<MimeType> mimeTypes;
57 virtual QObject *create(const QString& mimeType,
  /external/webkit/Source/WebKit/qt/tests/qwebplugindatabase/
tst_qwebplugindatabase.cpp 47 typedef QWebPluginInfo::MimeType MimeType;
74 QList<MimeType> mimeTypes;
80 MimeType mimeType;
81 mimeType.name = jsMimeType["type"].toString();
82 mimeType.description = jsMimeType["description"].toString();
83 mimeType.fileExtensions = jsMimeType["suffixes"].toString().split(',', QString::SkipEmptyParts);
85 mimeTypes.append(mimeType);
86 QVERIFY(plugin.supportsMimeType(mimeType.name))
    [all...]

Completed in 631 milliseconds