diff options
Diffstat (limited to 'Source/WebKit2/Shared/Plugins/Netscape/PluginInformation.h')
-rw-r--r-- | Source/WebKit2/Shared/Plugins/Netscape/PluginInformation.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/WebKit2/Shared/Plugins/Netscape/PluginInformation.h b/Source/WebKit2/Shared/Plugins/Netscape/PluginInformation.h index 7f6e19986..969e85a0a 100644 --- a/Source/WebKit2/Shared/Plugins/Netscape/PluginInformation.h +++ b/Source/WebKit2/Shared/Plugins/Netscape/PluginInformation.h @@ -26,7 +26,7 @@ #ifndef PluginInformation_h #define PluginInformation_h -#include "ImmutableDictionary.h" +#include "APIDictionary.h" #include <wtf/Forward.h> namespace WebKit { @@ -51,12 +51,12 @@ String pluginInformationPluginspageAttributeURLKey(); String pluginInformationPluginURLKey(); String plugInInformationReplacementObscuredKey(); -PassRefPtr<ImmutableDictionary> createPluginInformationDictionary(const PluginModuleInfo&); -PassRefPtr<ImmutableDictionary> createPluginInformationDictionary(const PluginModuleInfo&, const String& frameURLString, const String& mimeType, const String& pageURLString, const String& pluginspageAttributeURLString, const String& pluginURLString, bool replacementObscured = false); -PassRefPtr<ImmutableDictionary> createPluginInformationDictionary(const String& mimeType, const String& frameURLString, const String& pageURLString); +Ref<API::Dictionary> createPluginInformationDictionary(const PluginModuleInfo&); +Ref<API::Dictionary> createPluginInformationDictionary(const PluginModuleInfo&, const String& frameURLString, const String& mimeType, const String& pageURLString, const String& pluginspageAttributeURLString, const String& pluginURLString, bool replacementObscured = false); +Ref<API::Dictionary> createPluginInformationDictionary(const String& mimeType, const String& frameURLString, const String& pageURLString); -void getPluginModuleInformation(const PluginModuleInfo&, ImmutableDictionary::MapType&); -void getPlatformPluginModuleInformation(const PluginModuleInfo&, ImmutableDictionary::MapType&); +void getPluginModuleInformation(const PluginModuleInfo&, API::Dictionary::MapType&); +void getPlatformPluginModuleInformation(const PluginModuleInfo&, API::Dictionary::MapType&); } // namespace WebKit |