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

Unified Diff: ash/shelf/shelf_model_observer.h

Issue 152223002: Renames LauncherID, LauncherItem and LauncherItems... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: OWNERS Created 6 years, 11 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shelf/shelf_model_observer.h
diff --git a/ash/shelf/shelf_model_observer.h b/ash/shelf/shelf_model_observer.h
index 6d9f21fd2ff721a20b7b9fb946eb78269cd90035..a65e5cfea738e5ccd5de6fae493d66646bfd5ef2 100644
--- a/ash/shelf/shelf_model_observer.h
+++ b/ash/shelf/shelf_model_observer.h
@@ -6,11 +6,11 @@
#define ASH_SHELF_SHELF_MODEL_OBSERVER_H_
#include "ash/ash_export.h"
-#include "ash/launcher/launcher_types.h"
+#include "ash/shelf/shelf_item_types.h"
namespace ash {
-struct LauncherItem;
+struct ShelfItem;
class ASH_EXPORT ShelfModelObserver {
public:
@@ -19,7 +19,7 @@ class ASH_EXPORT ShelfModelObserver {
// Invoked after an item has been removed. |index| is the index the item was
// at.
- virtual void ShelfItemRemoved(int index, LauncherID id) = 0;
+ virtual void ShelfItemRemoved(int index, ShelfID id) = 0;
// Invoked after an item has been moved. See ShelfModel::Move() for details
// of the arguments.
@@ -27,7 +27,7 @@ class ASH_EXPORT ShelfModelObserver {
// Invoked when the state of an item changes. |old_item| is the item
// before the change.
- virtual void ShelfItemChanged(int index, const LauncherItem& old_item) = 0;
+ virtual void ShelfItemChanged(int index, const ShelfItem& old_item) = 0;
// Invoked when shelf status is changed.
virtual void ShelfStatusChanged() = 0;
« 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