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

Unified Diff: chrome/test/automation/tab_proxy.cc

Issue 274071: When Chrome hands off a URL to be opened by the external host by the ViewHost... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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/test/automation/tab_proxy.h ('k') | chrome_frame/bho.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/tab_proxy.cc
===================================================================
--- chrome/test/automation/tab_proxy.cc (revision 29317)
+++ chrome/test/automation/tab_proxy.cc (working copy)
@@ -108,12 +108,13 @@
}
AutomationMsg_NavigationResponseValues TabProxy::NavigateInExternalTab(
- const GURL& url) {
+ const GURL& url, const GURL& referrer) {
if (!is_valid())
return AUTOMATION_MSG_NAVIGATION_ERROR;
AutomationMsg_NavigationResponseValues rv = AUTOMATION_MSG_NAVIGATION_ERROR;
- sender_->Send(new AutomationMsg_NavigateInExternalTab(0, handle_, url, &rv));
+ sender_->Send(new AutomationMsg_NavigateInExternalTab(0, handle_, url,
+ referrer, &rv));
return rv;
}
« no previous file with comments | « chrome/test/automation/tab_proxy.h ('k') | chrome_frame/bho.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698