Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8331)

Unified Diff: chrome/default_plugin/plugin_impl_win.cc

Issue 7841012: Get chrome to link with USE_AURA (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/default_plugin/plugin_impl_win.cc
===================================================================
--- chrome/default_plugin/plugin_impl_win.cc (revision 99983)
+++ chrome/default_plugin/plugin_impl_win.cc (working copy)
@@ -346,8 +346,10 @@
DisplayStatus(IDS_DEFAULT_PLUGIN_DOWNLOADING_PLUGIN_MSG);
if (!plugin_download_url_for_display_) {
+#if !defined(USE_AURA)
ChildThread::current()->Send(new ChromePluginProcessHostMsg_DownloadUrl(
plugin_download_url_, hwnd()));
+#endif
} else {
default_plugin::g_browser->geturl(instance(),
plugin_download_url_.c_str(),
@@ -666,10 +668,12 @@
}
void PluginInstallerImpl::NotifyPluginStatus(int status) {
+#if !defined(USE_AURA)
ChildThread::current()->Send(
new ChromePluginProcessHostMsg_MissingPluginStatus(
status,
renderer_process_id(),
render_view_id(),
hwnd()));
+#endif
}
« no previous file with comments | « chrome/default_plugin/default_plugin.gyp ('k') | content/browser/renderer_host/render_message_filter_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698