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

Unified Diff: ash/launcher/launcher_model.h

Issue 68243002: ash: Rename LauncherModelObserver to ShelfModelObserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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/launcher/launcher_item_delegate_manager.cc ('k') | ash/launcher/launcher_model.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/launcher/launcher_model.h
diff --git a/ash/launcher/launcher_model.h b/ash/launcher/launcher_model.h
index 9d428445649749d0b94f76543cf6c2f5337faf5c..2845fb0df877176b82a709190873c6e4a322e895 100644
--- a/ash/launcher/launcher_model.h
+++ b/ash/launcher/launcher_model.h
@@ -12,7 +12,7 @@
namespace ash {
-class LauncherModelObserver;
+class ShelfModelObserver;
// Model used by ShelfView.
class ASH_EXPORT LauncherModel {
@@ -67,8 +67,8 @@ class ASH_EXPORT LauncherModel {
void SetStatus(Status status);
Status status() const { return status_; }
- void AddObserver(LauncherModelObserver* observer);
- void RemoveObserver(LauncherModelObserver* observer);
+ void AddObserver(ShelfModelObserver* observer);
+ void RemoveObserver(ShelfModelObserver* observer);
private:
// Makes sure |index| is in line with the type-based order of items. If that
@@ -81,7 +81,7 @@ class ASH_EXPORT LauncherModel {
LauncherItems items_;
Status status_;
- ObserverList<LauncherModelObserver> observers_;
+ ObserverList<ShelfModelObserver> observers_;
DISALLOW_COPY_AND_ASSIGN(LauncherModel);
};
« no previous file with comments | « ash/launcher/launcher_item_delegate_manager.cc ('k') | ash/launcher/launcher_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698