| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ | 5 #ifndef CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ |
| 6 #define CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ | 6 #define CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
| 12 #include "chrome/browser/tabs/tab_strip_model_observer.h" | 12 #include "chrome/browser/tabs/tab_strip_model_observer.h" |
| 13 #include "chrome/browser/tabs/tab_strip_selection_model.h" | 13 #include "chrome/browser/tabs/tab_strip_selection_model.h" |
| 14 #include "chrome/common/page_transition_types.h" | |
| 15 #include "content/common/notification_observer.h" | 14 #include "content/common/notification_observer.h" |
| 16 #include "content/common/notification_registrar.h" | 15 #include "content/common/notification_registrar.h" |
| 16 #include "content/common/page_transition_types.h" |
| 17 | 17 |
| 18 class NavigationController; | 18 class NavigationController; |
| 19 class Profile; | 19 class Profile; |
| 20 class TabContents; | 20 class TabContents; |
| 21 class TabContentsWrapper; | 21 class TabContentsWrapper; |
| 22 class TabStripModelDelegate; | 22 class TabStripModelDelegate; |
| 23 class TabStripModelOrderController; | 23 class TabStripModelOrderController; |
| 24 | 24 |
| 25 //////////////////////////////////////////////////////////////////////////////// | 25 //////////////////////////////////////////////////////////////////////////////// |
| 26 // | 26 // |
| (...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 | 605 |
| 606 // A scoped container for notification registries. | 606 // A scoped container for notification registries. |
| 607 NotificationRegistrar registrar_; | 607 NotificationRegistrar registrar_; |
| 608 | 608 |
| 609 TabStripSelectionModel selection_model_; | 609 TabStripSelectionModel selection_model_; |
| 610 | 610 |
| 611 DISALLOW_COPY_AND_ASSIGN(TabStripModel); | 611 DISALLOW_COPY_AND_ASSIGN(TabStripModel); |
| 612 }; | 612 }; |
| 613 | 613 |
| 614 #endif // CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ | 614 #endif // CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ |
| OLD | NEW |