diff options
author | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-29 14:46:15 +0000 |
---|---|---|
committer | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-29 14:46:15 +0000 |
commit | df2f172cf22679c379a4f30d141dba946eb750af (patch) | |
tree | cfbeee7f8d95689d04c6be743001d2b57c20b569 | |
parent | 6db7fe0fc22b9535dd3756ffc424c33924f17cf9 (diff) | |
download | chromium_src-df2f172cf22679c379a4f30d141dba946eb750af.zip chromium_src-df2f172cf22679c379a4f30d141dba946eb750af.tar.gz chromium_src-df2f172cf22679c379a4f30d141dba946eb750af.tar.bz2 |
Go ahead and wire in the plugin list to the shell, doesn't help anything pass,
but in doing this it cause a bunch of other linker issues to get hit, so this
will help force more things be ported right.
Review URL: http://codereview.chromium.org/19448
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8875 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/tools/test_shell/test_shell_mac.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/test_shell_mac.mm b/webkit/tools/test_shell/test_shell_mac.mm index 4ec9a2c..ce5ead7 100644 --- a/webkit/tools/test_shell/test_shell_mac.mm +++ b/webkit/tools/test_shell/test_shell_mac.mm @@ -689,7 +689,7 @@ std::string GetDataResource(int resource_id) { } bool GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins) { - return false; // NPAPI::PluginList::Singleton()->GetPlugins(refresh, plugins); + return NPAPI::PluginList::Singleton()->GetPlugins(refresh, plugins); } bool DownloadUrl(const std::string& url, NSWindow* caller_window) { |