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

Side by Side Diff: ash/shelf/shelf_model_observer.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs 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/shelf/shelf_model.cc ('k') | ash/shelf/shelf_model_unittest.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_OBSERVER_H_ 5 #ifndef ASH_SHELF_SHELF_MODEL_OBSERVER_H_
6 #define ASH_COMMON_SHELF_SHELF_MODEL_OBSERVER_H_ 6 #define ASH_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/shelf/shelf_item_types.h"
10 10
11 namespace ash { 11 namespace ash {
12 12
13 struct ShelfItem; 13 struct ShelfItem;
14 class ShelfItemDelegate; 14 class ShelfItemDelegate;
15 15
16 class ASH_EXPORT ShelfModelObserver { 16 class ASH_EXPORT ShelfModelObserver {
17 public: 17 public:
18 // Invoked after an item has been added to the model. 18 // Invoked after an item has been added to the model.
19 virtual void ShelfItemAdded(int index) = 0; 19 virtual void ShelfItemAdded(int index) = 0;
(...skipping 16 matching lines...) Expand all
36 // TODO(skuhne): Find the real reason for this problem and remove this fix. 36 // TODO(skuhne): Find the real reason for this problem and remove this fix.
37 virtual void OnSetShelfItemDelegate(ShelfID id, 37 virtual void OnSetShelfItemDelegate(ShelfID id,
38 ShelfItemDelegate* item_delegate) = 0; 38 ShelfItemDelegate* item_delegate) = 0;
39 39
40 protected: 40 protected:
41 virtual ~ShelfModelObserver() {} 41 virtual ~ShelfModelObserver() {}
42 }; 42 };
43 43
44 } // namespace ash 44 } // namespace ash
45 45
46 #endif // ASH_COMMON_SHELF_SHELF_MODEL_OBSERVER_H_ 46 #endif // ASH_SHELF_SHELF_MODEL_OBSERVER_H_
OLDNEW
« no previous file with comments | « ash/shelf/shelf_model.cc ('k') | ash/shelf/shelf_model_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698