| Index: ash/shelf/shelf_controller.h
|
| diff --git a/ash/shelf/shelf_controller.h b/ash/shelf/shelf_controller.h
|
| index 31bc1ebf1696c122af514f45b60148568a3cd810..c730345809426e9859e04c076a3173aa576bb923 100644
|
| --- a/ash/shelf/shelf_controller.h
|
| +++ b/ash/shelf/shelf_controller.h
|
| @@ -31,14 +31,6 @@ class ShelfController : public mojom::ShelfController {
|
|
|
| ShelfModel* model() { return &model_; }
|
|
|
| - const std::map<std::string, ShelfID>& app_id_to_shelf_id() {
|
| - return app_id_to_shelf_id_;
|
| - }
|
| -
|
| - const std::map<ShelfID, std::string>& shelf_id_to_app_id() {
|
| - return shelf_id_to_app_id_;
|
| - }
|
| -
|
| // Functions used to notify mojom::ShelfObserver instances of changes.
|
| void NotifyShelfCreated(WmShelf* shelf);
|
| void NotifyShelfAlignmentChanged(WmShelf* shelf);
|
| @@ -64,10 +56,6 @@ class ShelfController : public mojom::ShelfController {
|
| // The set of shelf observers notified about shelf state and settings changes.
|
| mojo::AssociatedInterfacePtrSet<mojom::ShelfObserver> observers_;
|
|
|
| - // Mappings between application and shelf ids.
|
| - std::map<std::string, ShelfID> app_id_to_shelf_id_;
|
| - std::map<ShelfID, std::string> shelf_id_to_app_id_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(ShelfController);
|
| };
|
|
|
|
|