diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 00:54:21 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 00:54:21 +0000 |
commit | 046344c69b0e16f8fa2fdcaf7a8e486d26301486 (patch) | |
tree | a2ff22d44b1595158eb6ffa7eafca06af34524f5 /webkit/glue/webplugin.h | |
parent | 7e8ede35f4a3e35e8d3948e7b0dec41d124a5244 (diff) | |
download | chromium_src-046344c69b0e16f8fa2fdcaf7a8e486d26301486.zip chromium_src-046344c69b0e16f8fa2fdcaf7a8e486d26301486.tar.gz chromium_src-046344c69b0e16f8fa2fdcaf7a8e486d26301486.tar.bz2 |
Fix layout test failures. Looks like keying the plugins based on OriginalFileName didn't work, since different filenames might still have the same value (i.e. QuickTime). Instead I did what Firefox does, which is collect the list of directories in one pass, then crawl them in another.
Review URL: http://codereview.chromium.org/17367
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7907 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webplugin.h')
-rw-r--r-- | webkit/glue/webplugin.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/webkit/glue/webplugin.h b/webkit/glue/webplugin.h index a0ac200..8354e7d 100644 --- a/webkit/glue/webplugin.h +++ b/webkit/glue/webplugin.h @@ -39,11 +39,6 @@ struct WebPluginInfo { // The name of the plugin (i.e. Flash). std::wstring name; - // The UTF8 filename of the plugin, without the path. This may be in a - // different case than FilePath on some systems. On Windows this comes from - // the DLL's version information. - std::string filename; - // The path to the plugin file (DLL/bundle/library). FilePath path; |