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

Unified Diff: chrome/browser/ui/ash/launcher/launcher_item_controller.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
Index: chrome/browser/ui/ash/launcher/launcher_item_controller.h
diff --git a/chrome/browser/ui/ash/launcher/launcher_item_controller.h b/chrome/browser/ui/ash/launcher/launcher_item_controller.h
index d9f1ba29aa9b579cdc64a0b4b47499eee17fda8e..df9b7b051b9e50dbd6f1c15a65b64234b11dac91 100644
--- a/chrome/browser/ui/ash/launcher/launcher_item_controller.h
+++ b/chrome/browser/ui/ash/launcher/launcher_item_controller.h
@@ -5,8 +5,8 @@
#ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_
#define CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_
-#include "ash/launcher/launcher_types.h"
#include "ash/shelf/shelf_item_delegate.h"
+#include "ash/shelf/shelf_item_types.h"
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/scoped_vector.h"
@@ -44,8 +44,8 @@ class LauncherItemController : public ash::ShelfItemDelegate {
virtual ~LauncherItemController();
Type type() const { return type_; }
- ash::LauncherID launcher_id() const { return launcher_id_; }
- void set_launcher_id(ash::LauncherID id) { launcher_id_ = id; }
+ ash::ShelfID shelf_id() const { return shelf_id_; }
+ void set_shelf_id(ash::ShelfID id) { shelf_id_ = id; }
virtual const std::string& app_id() const;
ChromeLauncherController* launcher_controller() const {
return launcher_controller_;
@@ -93,7 +93,7 @@ class LauncherItemController : public ash::ShelfItemDelegate {
const Type type_;
// App id will be empty if there is no app associated with the window.
const std::string app_id_;
- ash::LauncherID launcher_id_;
+ ash::ShelfID shelf_id_;
ChromeLauncherController* launcher_controller_;
// The lock counter which tells the launcher if the item can be removed from

Powered by Google App Engine
This is Rietveld 408576698