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

Unified Diff: chrome/test/automation/automation_messages.h

Issue 3549006: Top level navigations are not sent to the host browser in the ChromeFrame NPA... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « chrome/browser/external_tab_container_win.cc ('k') | chrome_frame/chrome_active_document.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/automation_messages.h
===================================================================
--- chrome/test/automation/automation_messages.h (revision 60826)
+++ chrome/test/automation/automation_messages.h (working copy)
@@ -392,6 +392,7 @@
GURL initial_url;
GURL referrer;
bool infobars_enabled;
+ bool route_all_top_level_navigations;
};
// Traits for ExternalTabSettings structure to pack/unpack.
@@ -408,6 +409,7 @@
WriteParam(m, p.initial_url);
WriteParam(m, p.referrer);
WriteParam(m, p.infobars_enabled);
+ WriteParam(m, p.route_all_top_level_navigations);
}
static bool Read(const Message* m, void** iter, param_type* p) {
return ReadParam(m, iter, &p->parent) &&
@@ -418,7 +420,8 @@
ReadParam(m, iter, &p->handle_top_level_requests) &&
ReadParam(m, iter, &p->initial_url) &&
ReadParam(m, iter, &p->referrer) &&
- ReadParam(m, iter, &p->infobars_enabled);
+ ReadParam(m, iter, &p->infobars_enabled) &&
+ ReadParam(m, iter, &p->route_all_top_level_navigations);
}
static void Log(const param_type& p, std::string* l) {
l->append("(");
@@ -439,6 +442,8 @@
LogParam(p.referrer, l);
l->append(", ");
LogParam(p.infobars_enabled, l);
+ l->append(", ");
+ LogParam(p.route_all_top_level_navigations, l);
l->append(")");
}
};
« no previous file with comments | « chrome/browser/external_tab_container_win.cc ('k') | chrome_frame/chrome_active_document.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698