summaryrefslogtreecommitdiffstats
path: root/chrome/renderer
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 /chrome/renderer
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 'chrome/renderer')
-rw-r--r--chrome/renderer/render_view.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/chrome/renderer/render_view.cc b/chrome/renderer/render_view.cc
index bce6d4c..0f085dc 100644
--- a/chrome/renderer/render_view.cc
+++ b/chrome/renderer/render_view.cc
@@ -257,16 +257,8 @@ void RenderView::PluginDestroyed(WebPluginDelegateProxy* proxy) {
// clicks the info bar to install. Unfortunately we are getting
// PluginDestroyed in single process mode. However, that is not a huge
// concern.
-#if defined(OS_WIN)
if (proxy == first_default_plugin_)
first_default_plugin_ = NULL;
-#else
- // TODO(port): because of the headers that we aren't including, the compiler
- // has only seen a forward decl, not the subclass relation. Thus it doesn't
- // know that the two pointer types compared above are comparable. Once we
- // port and include the headers this problem should go away.
- NOTIMPLEMENTED();
-#endif
}
void RenderView::PluginCrashed(const FilePath& plugin_path) {