Changeset 88842 in webkit


Ignore:
Timestamp:
Jun 14, 2011 12:37:06 PM (13 years ago)
Author:
andersca@apple.com
Message:

2011-06-14 Anders Carlsson <andersca@apple.com>

Reviewed by Sam Weinig.

Remove PluginInfoStore::Plugin typedef
https://bugs.webkit.org/show_bug.cgi?id=62657

  • UIProcess/Plugins/PluginInfoStore.h:
  • UIProcess/Plugins/win/PluginInfoStoreWin.cpp: (WebKit::PluginInfoStore::getPluginInfo): (WebKit::PluginInfoStore::shouldUsePlugin):
Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r88839 r88842  
     12011-06-14  Anders Carlsson  <andersca@apple.com>
     2
     3        Reviewed by Sam Weinig.
     4
     5        Remove PluginInfoStore::Plugin typedef
     6        https://bugs.webkit.org/show_bug.cgi?id=62657
     7
     8        * UIProcess/Plugins/PluginInfoStore.h:
     9        * UIProcess/Plugins/win/PluginInfoStoreWin.cpp:
     10        (WebKit::PluginInfoStore::getPluginInfo):
     11        (WebKit::PluginInfoStore::shouldUsePlugin):
     12
    1132011-06-14  Anders Carlsson  <andersca@apple.com>
    214
  • trunk/Source/WebKit2/UIProcess/Plugins/PluginInfoStore.h

    r88839 r88842  
    4040public:
    4141    PluginInfoStore();
    42 
    43     // FIXME: Remove this typedef.
    44     typedef PluginModuleInfo Plugin;
    4542
    4643    void setAdditionalPluginsDirectories(const Vector<String>&);
  • trunk/Source/WebKit2/UIProcess/Plugins/win/PluginInfoStoreWin.cpp

    r88839 r88842  
    324324}
    325325
    326 bool PluginInfoStore::getPluginInfo(const String& pluginPath, Plugin& plugin)
     326bool PluginInfoStore::getPluginInfo(const String& pluginPath, PluginModuleInfo& plugin)
    327327{
    328328    return NetscapePluginModule::getPluginInfo(pluginPath, plugin);
     
    396396    String pluginFileName = pathGetFileName(plugin.path);
    397397    for (size_t i = 0; i < alreadyLoadedPlugins.size(); ++i) {
    398         const Plugin& loadedPlugin = alreadyLoadedPlugins[i];
     398        const PluginModuleInfo& loadedPlugin = alreadyLoadedPlugins[i];
    399399
    400400        // If a plug-in with the same filename already exists, we don't want to load it.
Note: See TracChangeset for help on using the changeset viewer.