| 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_UI_TABS_TAB_STRIP_MODEL_H_ | 5 #ifndef CHROME_BROWSER_UI_TABS_TAB_STRIP_MODEL_H_ |
| 6 #define CHROME_BROWSER_UI_TABS_TAB_STRIP_MODEL_H_ | 6 #define CHROME_BROWSER_UI_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/ui/tabs/tab_strip_model_observer.h" | 12 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
| 13 #include "chrome/browser/ui/tabs/tab_strip_selection_model.h" | 13 #include "chrome/browser/ui/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 TabContentsWrapper; | 19 class TabContents; |
| 20 typedef TabContents TabContentsWrapper; |
| 20 class TabStripModelDelegate; | 21 class TabStripModelDelegate; |
| 21 class TabStripModelOrderController; | 22 class TabStripModelOrderController; |
| 22 | 23 |
| 23 namespace content { | 24 namespace content { |
| 24 class NavigationController; | 25 class NavigationController; |
| 25 class WebContents; | 26 class WebContents; |
| 26 } | 27 } |
| 27 | 28 |
| 28 //////////////////////////////////////////////////////////////////////////////// | 29 //////////////////////////////////////////////////////////////////////////////// |
| 29 // | 30 // |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 | 685 |
| 685 // A scoped container for notification registries. | 686 // A scoped container for notification registries. |
| 686 content::NotificationRegistrar registrar_; | 687 content::NotificationRegistrar registrar_; |
| 687 | 688 |
| 688 TabStripSelectionModel selection_model_; | 689 TabStripSelectionModel selection_model_; |
| 689 | 690 |
| 690 DISALLOW_IMPLICIT_CONSTRUCTORS(TabStripModel); | 691 DISALLOW_IMPLICIT_CONSTRUCTORS(TabStripModel); |
| 691 }; | 692 }; |
| 692 | 693 |
| 693 #endif // CHROME_BROWSER_UI_TABS_TAB_STRIP_MODEL_H_ | 694 #endif // CHROME_BROWSER_UI_TABS_TAB_STRIP_MODEL_H_ |
| OLD | NEW |