diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 21:42:40 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 21:42:40 +0000 |
commit | f6d2a3ea08382ca51d1c303454b3a113bc41a367 (patch) | |
tree | ee91b676f324ffc3f2379ab5ceb5b229d2409644 /chrome/browser/plugin_installer_infobar_delegate.cc | |
parent | b9476c7281446ab0ddadb696a1bc4ee969730ee8 (diff) | |
download | chromium_src-f6d2a3ea08382ca51d1c303454b3a113bc41a367.zip chromium_src-f6d2a3ea08382ca51d1c303454b3a113bc41a367.tar.gz chromium_src-f6d2a3ea08382ca51d1c303454b3a113bc41a367.tar.bz2 |
Don't build a bunch of stuff on Aura, rather than ifdefing out code in it.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8591004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110567 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/plugin_installer_infobar_delegate.cc')
-rw-r--r-- | chrome/browser/plugin_installer_infobar_delegate.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/chrome/browser/plugin_installer_infobar_delegate.cc b/chrome/browser/plugin_installer_infobar_delegate.cc index a99070c..02b8f2d 100644 --- a/chrome/browser/plugin_installer_infobar_delegate.cc +++ b/chrome/browser/plugin_installer_infobar_delegate.cc @@ -50,14 +50,11 @@ string16 PluginInstallerInfoBarDelegate::GetButtonLabel( bool PluginInstallerInfoBarDelegate::Accept() { // TODO(PORT) for other platforms. -#if defined(OS_WIN) && !defined(USE_AURA) +#if defined(OS_WIN) ::PostMessage(window_, webkit::npapi::default_plugin::kInstallMissingPluginMessage, 0, 0); -#elif defined(USE_AURA) - // TODO(beng): - NOTIMPLEMENTED(); #endif return true; } |