| 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_COMMON_SHELF_SHELF_MODEL_OBSERVER_H_ | 5 #ifndef ASH_COMMON_SHELF_SHELF_MODEL_OBSERVER_H_ |
| 6 #define ASH_COMMON_SHELF_SHELF_MODEL_OBSERVER_H_ | 6 #define ASH_COMMON_SHELF_SHELF_MODEL_OBSERVER_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/common/shelf/shelf_item_types.h" | 9 #include "ash/public/cpp/shelf_item.h" |
| 10 | 10 |
| 11 namespace ash { | 11 namespace ash { |
| 12 | 12 |
| 13 struct ShelfItem; | 13 struct ShelfItem; |
| 14 | 14 |
| 15 namespace mojom { | 15 namespace mojom { |
| 16 class ShelfItemDelegate; | 16 class ShelfItemDelegate; |
| 17 } | 17 } |
| 18 | 18 |
| 19 class ASH_EXPORT ShelfModelObserver { | 19 class ASH_EXPORT ShelfModelObserver { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 41 ShelfID id, | 41 ShelfID id, |
| 42 mojom::ShelfItemDelegate* item_delegate) = 0; | 42 mojom::ShelfItemDelegate* item_delegate) = 0; |
| 43 | 43 |
| 44 protected: | 44 protected: |
| 45 virtual ~ShelfModelObserver() {} | 45 virtual ~ShelfModelObserver() {} |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace ash | 48 } // namespace ash |
| 49 | 49 |
| 50 #endif // ASH_COMMON_SHELF_SHELF_MODEL_OBSERVER_H_ | 50 #endif // ASH_COMMON_SHELF_SHELF_MODEL_OBSERVER_H_ |
| OLD | NEW |