summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-28 19:58:53 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-28 19:58:53 +0000
commit49fd5cd62a9773ce94fdd5e0e3d048d8c4fd0ff0 (patch)
treead4074e015be17edc5fddbbb589002f7330d4db0 /webkit
parent1c773ea173afc27ae415ce59ce16c24a65ffa359 (diff)
downloadchromium_src-49fd5cd62a9773ce94fdd5e0e3d048d8c4fd0ff0.zip
chromium_src-49fd5cd62a9773ce94fdd5e0e3d048d8c4fd0ff0.tar.gz
chromium_src-49fd5cd62a9773ce94fdd5e0e3d048d8c4fd0ff0.tar.bz2
plugins: Some obvious ifdef removals (code that previously wouldn't link).
Review URL: http://codereview.chromium.org/100118 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14773 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/webplugin_impl.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/webkit/glue/webplugin_impl.cc b/webkit/glue/webplugin_impl.cc
index de428a3..c1e63af 100644
--- a/webkit/glue/webplugin_impl.cc
+++ b/webkit/glue/webplugin_impl.cc
@@ -415,13 +415,7 @@ bool WebPluginImpl::SetPostData(WebCore::ResourceRequest* request,
std::vector<std::string> names;
std::vector<std::string> values;
std::vector<char> body;
-#if !defined(OS_LINUX)
bool rv = NPAPI::PluginHost::SetPostData(buf, length, &names, &values, &body);
-#else
- // TODO(port): unstub once we have plugin support
- bool rv = false;
- NOTREACHED();
-#endif
for (size_t i = 0; i < names.size(); ++i)
request->addHTTPHeaderField(webkit_glue::StdStringToString(names[i]),