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

Unified Diff: chrome/browser/instant/instant_tab.cc

Issue 11644009: Added support for passing WindowOpenDisposition into BrowserInstantController::OpenURL() from the o… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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/instant/instant_tab.cc
diff --git a/chrome/browser/instant/instant_tab.cc b/chrome/browser/instant/instant_tab.cc
index 33cfe621649223bbfdc5a8f243b12208a394050e..213663e935b5d3fe275abf7e2aa94da9b21cce7d 100644
--- a/chrome/browser/instant/instant_tab.cc
+++ b/chrome/browser/instant/instant_tab.cc
@@ -3,7 +3,6 @@
// found in the LICENSE file.
#include "chrome/browser/instant/instant_tab.h"
-
samarth 2013/01/10 21:42:04 nit: leave this line here.
dougw 2013/01/18 23:54:30 Done.
#include "chrome/browser/instant/instant_controller.h"
InstantTab::InstantTab(InstantController* controller,
@@ -93,6 +92,7 @@ void InstantTab::AboutToNavigateMainFrame(const GURL& url) {
}
void InstantTab::NavigateToURL(const GURL& url,
- content::PageTransition transition) {
- controller_->NavigateToURL(url, transition);
+ content::PageTransition transition,
+ WindowOpenDisposition disposition) {
+ controller_->NavigateToURL(url, transition, disposition);
}

Powered by Google App Engine
This is Rietveld 408576698