OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/public/browser/notification_observer.h" | 14 #include "content/public/browser/notification_observer.h" |
15 #include "content/public/browser/notification_registrar.h" | 15 #include "content/public/browser/notification_registrar.h" |
16 #include "content/public/common/page_transition_types.h" | 16 #include "content/public/common/page_transition_types.h" |
17 | 17 |
18 class Profile; | 18 class Profile; |
19 class TabContents; | |
20 class TabContentsWrapper; | 19 class TabContentsWrapper; |
21 class TabStripModelDelegate; | 20 class TabStripModelDelegate; |
22 class TabStripModelOrderController; | 21 class TabStripModelOrderController; |
23 | 22 |
24 namespace content { | 23 namespace content { |
25 class NavigationController; | 24 class NavigationController; |
26 class WebContents; | 25 class WebContents; |
27 } | 26 } |
28 | 27 |
29 //////////////////////////////////////////////////////////////////////////////// | 28 //////////////////////////////////////////////////////////////////////////////// |
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 | 667 |
669 // A scoped container for notification registries. | 668 // A scoped container for notification registries. |
670 content::NotificationRegistrar registrar_; | 669 content::NotificationRegistrar registrar_; |
671 | 670 |
672 TabStripSelectionModel selection_model_; | 671 TabStripSelectionModel selection_model_; |
673 | 672 |
674 DISALLOW_IMPLICIT_CONSTRUCTORS(TabStripModel); | 673 DISALLOW_IMPLICIT_CONSTRUCTORS(TabStripModel); |
675 }; | 674 }; |
676 | 675 |
677 #endif // CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ | 676 #endif // CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ |
OLD | NEW |