Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: ash/common/shelf/shelf_model.h

Issue 2750463009: mash: Fix ShelfItem mojo struct; add enums and traits. (Closed)
Patch Set: Address comment. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/common/shelf/shelf_item_types.cc ('k') | ash/common/shelf/shelf_model.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_COMMON_SHELF_SHELF_MODEL_H_ 5 #ifndef ASH_COMMON_SHELF_SHELF_MODEL_H_
6 #define ASH_COMMON_SHELF_SHELF_MODEL_H_ 6 #define ASH_COMMON_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/common/shelf/shelf_item_types.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 ShelfModelObserver; 19 class ShelfModelObserver;
20 20
21 // Model used for shelf items. Owns ShelfItemDelegates but does not create them. 21 // Model used for shelf items. Owns ShelfItemDelegates but does not create them.
22 class ASH_EXPORT ShelfModel { 22 class ASH_EXPORT ShelfModel {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 103
104 std::map<ShelfID, std::unique_ptr<mojom::ShelfItemDelegate>> 104 std::map<ShelfID, std::unique_ptr<mojom::ShelfItemDelegate>>
105 id_to_item_delegate_map_; 105 id_to_item_delegate_map_;
106 106
107 DISALLOW_COPY_AND_ASSIGN(ShelfModel); 107 DISALLOW_COPY_AND_ASSIGN(ShelfModel);
108 }; 108 };
109 109
110 } // namespace ash 110 } // namespace ash
111 111
112 #endif // ASH_COMMON_SHELF_SHELF_MODEL_H_ 112 #endif // ASH_COMMON_SHELF_SHELF_MODEL_H_
OLDNEW
« no previous file with comments | « ash/common/shelf/shelf_item_types.cc ('k') | ash/common/shelf/shelf_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698