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

Unified Diff: chrome/browser/tab_contents/tab_contents_view_gtk.cc

Issue 8760024: Cross-process postMessage (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Some cleanup Created 9 years 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/browser/tab_contents/tab_contents_view_gtk.cc
diff --git a/chrome/browser/tab_contents/tab_contents_view_gtk.cc b/chrome/browser/tab_contents/tab_contents_view_gtk.cc
index 1b2c5d6961dab44852501b7e0c69561b5ba553da..99661395ed603f741394c937ffaf4b6c71261057 100644
--- a/chrome/browser/tab_contents/tab_contents_view_gtk.cc
+++ b/chrome/browser/tab_contents/tab_contents_view_gtk.cc
@@ -327,9 +327,10 @@ gboolean TabContentsViewGtk::OnFocus(GtkWidget* widget,
void TabContentsViewGtk::CreateNewWindow(
int route_id,
- const ViewHostMsg_CreateWindow_Params& params) {
+ const ViewHostMsg_CreateWindow_Params& params,
+ content::ContentFrame* opener) {
delegate_view_helper_.CreateNewWindowFromTabContents(
- tab_contents_, route_id, params);
+ opener, route_id, params);
}
void TabContentsViewGtk::CreateNewWidget(

Powered by Google App Engine
This is Rietveld 408576698