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

Unified Diff: content/browser/renderer_host/render_view_host_impl.cc

Issue 11360106: Browser Plugin: Implement AutoSize (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with ToT Created 8 years, 1 month 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: content/browser/renderer_host/render_view_host_impl.cc
diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
index 19ddc20c593639086de0675ad7b0b35c47ed898b..7d5b349a2010ff02f5360d0757ae9def99d62a6e 100644
--- a/content/browser/renderer_host/render_view_host_impl.cc
+++ b/content/browser/renderer_host/render_view_host_impl.cc
@@ -928,6 +928,7 @@ bool RenderViewHostImpl::OnMessageReceived(const IPC::Message& msg) {
// thread and make these messages async: http://crbug.com/149063.
if (msg.type() != BrowserPluginHostMsg_HandleInputEvent::ID &&
msg.type() != BrowserPluginHostMsg_ResizeGuest::ID &&
+ msg.type() != BrowserPluginHostMsg_SetAutoSize::ID &&
jam 2012/11/09 17:11:10 anyway to avoid this sync IPC?
Fady Samuel 2012/11/09 17:41:10 Yes, but not easily. We have a bug open related to
Fady Samuel 2012/11/09 18:02:53 As per offline discussion, this is a hard, general
!BrowserMessageFilter::CheckCanDispatchOnUI(msg, this))
return true;
« no previous file with comments | « content/browser/browser_plugin/test_browser_plugin_guest.cc ('k') | content/common/browser_plugin_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698