diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-08 19:30:18 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-08 19:30:18 +0000 |
commit | f0f9663246d5bd8a2d03721d7390bdb2db244e18 (patch) | |
tree | 0f6e58890abd1738533b46872548a02092f31232 /chrome/test/plugin | |
parent | df7fba1ca4a21fbf8d5738d522b4b63abbf425fe (diff) | |
download | chromium_src-f0f9663246d5bd8a2d03721d7390bdb2db244e18.zip chromium_src-f0f9663246d5bd8a2d03721d7390bdb2db244e18.tar.gz chromium_src-f0f9663246d5bd8a2d03721d7390bdb2db244e18.tar.bz2 |
Fix a build break by removing some webkit_glue stub functions from plugin_test.cpp. These will
get deleted anyway by jam's pending media player plugin changes.
I also disabled the DefaultPluginParsingTest as it fails when we remove these stub functions. However
this is also getting deleted in jam's media player change.
TBR=amit, jam(FYI)
Review URL: http://codereview.chromium.org/201051
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25648 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/plugin')
-rw-r--r-- | chrome/test/plugin/plugin_test.cpp | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/chrome/test/plugin/plugin_test.cpp b/chrome/test/plugin/plugin_test.cpp index dfed2f0..63def02 100644 --- a/chrome/test/plugin/plugin_test.cpp +++ b/chrome/test/plugin/plugin_test.cpp @@ -249,27 +249,7 @@ TEST_F(ActiveXTest, DISABLED_EmbeddedMPE) { TestActiveX(L"mpe_test.html", kLongWaitTimeout, false); } - -// The default plugin tests defined below rely on the following webkit -// functions and the IsPluginProcess function which is defined in the global -// namespace. Stubbed these out for now. -namespace webkit_glue { - -bool DownloadUrl(const std::string& url, HWND caller_window) { - return false; -} - -bool GetPluginFinderURL(std::string* plugin_finder_url) { - return true; -} - -} // namespace webkit_glue - -bool IsPluginProcess() { - return false; -} - -TEST_F(PluginTest, DefaultPluginParsingTest) { +TEST_F(PluginTest, DISABLED_DefaultPluginParsingTest) { PluginInstallerImpl plugin_installer(NP_EMBED); NPP_t plugin_instance = {0}; |