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); |
} |