Index: chrome/browser/plugin_installer_infobar_delegate.cc |
=================================================================== |
--- chrome/browser/plugin_installer_infobar_delegate.cc (revision 99764) |
+++ chrome/browser/plugin_installer_infobar_delegate.cc (working copy) |
@@ -51,12 +51,15 @@ |
bool PluginInstallerInfoBarDelegate::Accept() { |
// TODO(PORT) for other platforms. |
-#ifdef OS_WIN |
+#if defined(OS_WIN) && !defined(USE_AURA) |
::PostMessage(window_, |
webkit::npapi::default_plugin::kInstallMissingPluginMessage, |
0, |
0); |
-#endif // OS_WIN |
+#elif defined(USE_AURA) |
+ // TODO(beng): |
+ NOTIMPLEMENTED(); |
+#endif |
return true; |
} |