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 |
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
636 | 636 |
637 // Our observers. | 637 // Our observers. |
638 typedef ObserverList<TabStripModelObserver> TabStripModelObservers; | 638 typedef ObserverList<TabStripModelObserver> TabStripModelObservers; |
639 TabStripModelObservers observers_; | 639 TabStripModelObservers observers_; |
640 | 640 |
641 // A scoped container for notification registries. | 641 // A scoped container for notification registries. |
642 NotificationRegistrar registrar_; | 642 NotificationRegistrar registrar_; |
643 | 643 |
644 TabStripSelectionModel selection_model_; | 644 TabStripSelectionModel selection_model_; |
645 | 645 |
| 646 int32 magic_id_; |
| 647 |
646 DISALLOW_IMPLICIT_CONSTRUCTORS(TabStripModel); | 648 DISALLOW_IMPLICIT_CONSTRUCTORS(TabStripModel); |
647 }; | 649 }; |
648 | 650 |
649 #endif // CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ | 651 #endif // CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ |
OLD | NEW |