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

Side by Side Diff: ui/app_list/app_list_item_list_observer.h

Issue 148403007: Protect AppListItemList Add/Remove and fix sync bugs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 UI_APP_LIST_APP_LIST_ITEM_LIST_OBSERVER_H_ 5 #ifndef UI_APP_LIST_APP_LIST_ITEM_LIST_OBSERVER_H_
6 #define UI_APP_LIST_APP_LIST_ITEM_LIST_OBSERVER_H_ 6 #define UI_APP_LIST_APP_LIST_ITEM_LIST_OBSERVER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "ui/app_list/app_list_export.h"
9 10
10 namespace app_list { 11 namespace app_list {
11 12
12 class AppListItem; 13 class AppListItem;
13 14
14 class APP_LIST_EXPORT AppListItemListObserver { 15 class APP_LIST_EXPORT AppListItemListObserver {
15 public: 16 public:
16 // Triggered after |item| has been added to the list at |index|. 17 // Triggered after |item| has been added to the list at |index|.
17 virtual void OnListItemAdded(size_t index, AppListItem* item) {} 18 virtual void OnListItemAdded(size_t index, AppListItem* item) {}
18 19
19 // Triggered after an item has been removed from the list at |index|, just 20 // Triggered after an item has been removed from the list at |index|, just
20 // before the item is deleted. 21 // before the item is deleted.
21 virtual void OnListItemRemoved(size_t index, AppListItem* item) {} 22 virtual void OnListItemRemoved(size_t index, AppListItem* item) {}
22 23
23 // Triggered after |item| has been moved from |from_index| to |to_index|. 24 // Triggered after |item| has been moved from |from_index| to |to_index|.
24 virtual void OnListItemMoved(size_t from_index, 25 virtual void OnListItemMoved(size_t from_index,
25 size_t to_index, 26 size_t to_index,
26 AppListItem* item) {} 27 AppListItem* item) {}
27 28
28 protected: 29 protected:
29 virtual ~AppListItemListObserver() {} 30 virtual ~AppListItemListObserver() {}
30 }; 31 };
31 32
32 } // namespace app_list 33 } // namespace app_list
33 34
34 #endif // UI_APP_LIST_APP_LIST_ITEM_LIST_OBSERVER_H_ 35 #endif // UI_APP_LIST_APP_LIST_ITEM_LIST_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698