OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 ASH_SHELF_SHELF_ITEM_DELEGATE_MANAGER_H_ | 5 #ifndef ASH_SHELF_SHELF_ITEM_DELEGATE_MANAGER_H_ |
6 #define ASH_SHELF_SHELF_ITEM_DELEGATE_MANAGER_H_ | 6 #define ASH_SHELF_SHELF_ITEM_DELEGATE_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
11 #include "ash/shelf/shelf_item_types.h" | 11 #include "ash/shelf/shelf_item_types.h" |
12 #include "ash/shelf/shelf_model_observer.h" | 12 #include "ash/shelf/shelf_model_observer.h" |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/macros.h" |
14 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
15 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
16 | 17 |
17 namespace ash { | 18 namespace ash { |
18 class ShelfItemDelegate; | 19 class ShelfItemDelegate; |
19 class ShelfModel; | 20 class ShelfModel; |
20 | 21 |
21 namespace test { | 22 namespace test { |
22 class ShelfItemDelegateManagerTestAPI; | 23 class ShelfItemDelegateManagerTestAPI; |
23 } | 24 } |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 ShelfIDToItemDelegateMap id_to_item_delegate_map_; | 77 ShelfIDToItemDelegateMap id_to_item_delegate_map_; |
77 | 78 |
78 base::ObserverList<ShelfItemDelegateManagerObserver> observers_; | 79 base::ObserverList<ShelfItemDelegateManagerObserver> observers_; |
79 | 80 |
80 DISALLOW_COPY_AND_ASSIGN(ShelfItemDelegateManager); | 81 DISALLOW_COPY_AND_ASSIGN(ShelfItemDelegateManager); |
81 }; | 82 }; |
82 | 83 |
83 } // namespace ash | 84 } // namespace ash |
84 | 85 |
85 #endif // ASH_SHELF_SHELF_ITEM_DELEGATE_MANAGER_H_ | 86 #endif // ASH_SHELF_SHELF_ITEM_DELEGATE_MANAGER_H_ |
OLD | NEW |