| Index: chrome/browser/ui/tabs/tab_strip_model_order_controller.cc
|
| diff --git a/chrome/browser/ui/tabs/tab_strip_model_order_controller.cc b/chrome/browser/ui/tabs/tab_strip_model_order_controller.cc
|
| index 52e8758ddf7bd4c050aecd5b7f0a3696f72c7d52..b91b34877dbe981cd9d4d6bd89ef17ddfa48cf16 100644
|
| --- a/chrome/browser/ui/tabs/tab_strip_model_order_controller.cc
|
| +++ b/chrome/browser/ui/tabs/tab_strip_model_order_controller.cc
|
| @@ -20,7 +20,7 @@ TabStripModelOrderController::~TabStripModelOrderController() {
|
| }
|
|
|
| int TabStripModelOrderController::DetermineInsertionIndex(
|
| - content::PageTransition transition,
|
| + ui::PageTransition transition,
|
| bool foreground) {
|
| int tab_count = tabstrip_->count();
|
| if (!tab_count)
|
| @@ -28,7 +28,7 @@ int TabStripModelOrderController::DetermineInsertionIndex(
|
|
|
| // NOTE: TabStripModel enforces that all non-mini-tabs occur after mini-tabs,
|
| // so we don't have to check here too.
|
| - if (transition == content::PAGE_TRANSITION_LINK &&
|
| + if (transition == ui::PAGE_TRANSITION_LINK &&
|
| tabstrip_->active_index() != -1) {
|
| if (foreground) {
|
| // If the page was opened in the foreground by a link click in another
|
|
|