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

Unified Diff: chrome/browser/render_widget_helper.cc

Issue 17455: Autofill popup dismissed when page loses focus (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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
« no previous file with comments | « chrome/browser/render_widget_helper.h ('k') | chrome/browser/render_widget_host_view_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/render_widget_helper.cc
===================================================================
--- chrome/browser/render_widget_helper.cc (revision 7623)
+++ chrome/browser/render_widget_helper.cc (working copy)
@@ -219,10 +219,10 @@
}
void RenderWidgetHelper::CreateNewWidget(int opener_id,
- bool focus_on_show,
+ bool activatable,
int* route_id) {
*route_id = GetNextRoutingID();
- ViewHostMsg_CreateWidgetWithRoute msg(opener_id, *route_id, focus_on_show);
+ ViewHostMsg_CreateWidgetWithRoute msg(opener_id, *route_id, activatable);
ui_loop_->PostTask(FROM_HERE, NewRunnableMethod(
this, &RenderWidgetHelper::OnSimulateReceivedMessage, msg));
}
« no previous file with comments | « chrome/browser/render_widget_helper.h ('k') | chrome/browser/render_widget_host_view_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698