| Index: chrome/browser/ui/views/tabs/stacked_tab_strip_layout.h
|
| diff --git a/chrome/browser/ui/views/tabs/stacked_tab_strip_layout.h b/chrome/browser/ui/views/tabs/stacked_tab_strip_layout.h
|
| index f9624d567f37ec1934b8530848e3fd514020bfa8..a0b75c212efa90c79666cac4d3b8968ade55e249 100644
|
| --- a/chrome/browser/ui/views/tabs/stacked_tab_strip_layout.h
|
| +++ b/chrome/browser/ui/views/tabs/stacked_tab_strip_layout.h
|
| @@ -11,9 +11,7 @@
|
| #include "ui/gfx/size.h"
|
| #include "ui/views/view_model.h"
|
|
|
| -namespace views {
|
| -class ViewModel;
|
| -}
|
| +class Tab;
|
|
|
| // StackedTabStripLayout is used by TabStrip in touch
|
| // mode. StackedTabStripLayout is responsible for managing the bounds of the
|
| @@ -36,7 +34,7 @@ class StackedTabStripLayout {
|
| int padding,
|
| int stacked_padding,
|
| int max_stacked_count,
|
| - views::ViewModel* view_model);
|
| + views::ViewModel<Tab>* view_model);
|
| ~StackedTabStripLayout();
|
|
|
| // Sets the x-coordinate the normal tabs start at as well as the mini-tab
|
| @@ -217,7 +215,7 @@ class StackedTabStripLayout {
|
| const int max_stacked_count_;
|
|
|
| // Where bounds are placed. This is owned by TabStrip.
|
| - views::ViewModel* view_model_;
|
| + views::ViewModel<Tab>* view_model_;
|
|
|
| // x-coordinate normal tabs start at.
|
| int x_;
|
|
|