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_MODEL_H_ | 5 #ifndef ASH_SHELF_SHELF_MODEL_H_ |
6 #define ASH_SHELF_SHELF_MODEL_H_ | 6 #define ASH_SHELF_SHELF_MODEL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 | 10 |
11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
12 #include "ash/public/cpp/shelf_item.h" | 12 #include "ash/public/cpp/shelf_item.h" |
13 #include "ash/public/interfaces/shelf.mojom.h" | 13 #include "ash/public/interfaces/shelf.mojom.h" |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
16 | 16 |
17 namespace ash { | 17 namespace ash { |
18 | 18 |
19 class ShelfItemDelegate; | 19 class ShelfItemDelegate; |
20 class ShelfModelObserver; | 20 class ShelfModelObserver; |
21 | 21 |
| 22 // An id for the AppList item, which is added in the ShelfModel constructor. |
| 23 // Generated as crx_file::id_util::GenerateId("org.chromium.applist") |
| 24 ASH_EXPORT extern const char kAppListId[]; |
| 25 |
22 // Model used for shelf items. Owns ShelfItemDelegates but does not create them. | 26 // Model used for shelf items. Owns ShelfItemDelegates but does not create them. |
| 27 // TODO(msw): Move this to ash/public/cpp and use ASH_PUBLIC_EXPORT. |
23 class ASH_EXPORT ShelfModel { | 28 class ASH_EXPORT ShelfModel { |
24 public: | 29 public: |
25 ShelfModel(); | 30 ShelfModel(); |
26 ~ShelfModel(); | 31 ~ShelfModel(); |
27 | 32 |
28 // Pins an app with |app_id| to shelf. A running instance will get pinned. | 33 // Pins an app with |app_id| to shelf. A running instance will get pinned. |
29 // In case there is no running instance a new shelf item is created and | 34 // If there is no running instance, a new shelf item is created and pinned. |
30 // pinned. | |
31 void PinAppWithID(const std::string& app_id); | 35 void PinAppWithID(const std::string& app_id); |
32 | 36 |
33 // Check if the app with |app_id_| is pinned to the shelf. | 37 // Check if the app with |app_id_| is pinned to the shelf. |
34 bool IsAppPinned(const std::string& app_id); | 38 bool IsAppPinned(const std::string& app_id); |
35 | 39 |
36 // Unpins app item with |app_id|. | 40 // Unpins app item with |app_id|. |
37 void UnpinAppWithID(const std::string& app_id); | 41 void UnpinAppWithID(const std::string& app_id); |
38 | 42 |
39 // Cleans up the ShelfItemDelegates. | 43 // Cleans up the ShelfItemDelegates. |
40 void DestroyItemDelegates(); | 44 void DestroyItemDelegates(); |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 104 |
101 std::map<ShelfID, std::unique_ptr<ShelfItemDelegate>> | 105 std::map<ShelfID, std::unique_ptr<ShelfItemDelegate>> |
102 id_to_item_delegate_map_; | 106 id_to_item_delegate_map_; |
103 | 107 |
104 DISALLOW_COPY_AND_ASSIGN(ShelfModel); | 108 DISALLOW_COPY_AND_ASSIGN(ShelfModel); |
105 }; | 109 }; |
106 | 110 |
107 } // namespace ash | 111 } // namespace ash |
108 | 112 |
109 #endif // ASH_SHELF_SHELF_MODEL_H_ | 113 #endif // ASH_SHELF_SHELF_MODEL_H_ |
OLD | NEW |