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

Side by Side Diff: ash/common/shelf/shelf_controller.cc

Issue 2726823003: Remove WmLookup. (Closed)
Patch Set: Remove wm_lookup. Created 3 years, 9 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #include "ash/common/shelf/shelf_controller.h" 5 #include "ash/common/shelf/shelf_controller.h"
6 6
7 #include "ash/common/shelf/shelf_item_delegate.h" 7 #include "ash/common/shelf/shelf_item_delegate.h"
8 #include "ash/common/shelf/wm_shelf.h" 8 #include "ash/common/shelf/wm_shelf.h"
9 #include "ash/common/wm_lookup.h"
10 #include "ash/common/wm_shell.h" 9 #include "ash/common/wm_shell.h"
11 #include "ash/common/wm_window.h" 10 #include "ash/common/wm_window.h"
12 #include "ash/root_window_controller.h" 11 #include "ash/root_window_controller.h"
12 #include "ash/shell.h"
13 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
14 #include "ui/base/models/simple_menu_model.h" 14 #include "ui/base/models/simple_menu_model.h"
15 #include "ui/base/resource/resource_bundle.h" 15 #include "ui/base/resource/resource_bundle.h"
16 #include "ui/display/display.h" 16 #include "ui/display/display.h"
17 #include "ui/display/screen.h" 17 #include "ui/display/screen.h"
18 #include "ui/gfx/image/image_skia.h" 18 #include "ui/gfx/image/image_skia.h"
19 #include "ui/resources/grit/ui_resources.h" 19 #include "ui/resources/grit/ui_resources.h"
20 20
21 namespace ash { 21 namespace ash {
22 22
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); 107 ResourceBundle& rb = ResourceBundle::GetSharedInstance();
108 icon_image = *rb.GetImageSkiaNamed(IDR_DEFAULT_FAVICON); 108 icon_image = *rb.GetImageSkiaNamed(IDR_DEFAULT_FAVICON);
109 } 109 }
110 return icon_image; 110 return icon_image;
111 } 111 }
112 112
113 // Returns the WmShelf instance for the display with the given |display_id|. 113 // Returns the WmShelf instance for the display with the given |display_id|.
114 WmShelf* GetShelfForDisplay(int64_t display_id) { 114 WmShelf* GetShelfForDisplay(int64_t display_id) {
115 // The controller may be null for invalid ids or for displays being removed. 115 // The controller may be null for invalid ids or for displays being removed.
116 RootWindowController* root_window_controller = 116 RootWindowController* root_window_controller =
117 WmLookup::Get()->GetRootWindowControllerWithDisplayId(display_id); 117 Shell::GetRootWindowControllerWithDisplayId(display_id);
118 return root_window_controller ? root_window_controller->GetShelf() : nullptr; 118 return root_window_controller ? root_window_controller->GetShelf() : nullptr;
119 } 119 }
120 120
121 } // namespace 121 } // namespace
122 122
123 ShelfController::ShelfController() {} 123 ShelfController::ShelfController() {}
124 124
125 ShelfController::~ShelfController() {} 125 ShelfController::~ShelfController() {}
126 126
127 void ShelfController::BindRequest(mojom::ShelfControllerRequest request) { 127 void ShelfController::BindRequest(mojom::ShelfControllerRequest request) {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 return; 234 return;
235 ShelfID shelf_id = app_id_to_shelf_id_[app_id]; 235 ShelfID shelf_id = app_id_to_shelf_id_[app_id];
236 int index = model_.ItemIndexByID(shelf_id); 236 int index = model_.ItemIndexByID(shelf_id);
237 DCHECK_GE(index, 0); 237 DCHECK_GE(index, 0);
238 ShelfItem item = *model_.ItemByID(shelf_id); 238 ShelfItem item = *model_.ItemByID(shelf_id);
239 item.image = GetShelfIconFromBitmap(image); 239 item.image = GetShelfIconFromBitmap(image);
240 model_.Set(index, item); 240 model_.Set(index, item);
241 } 241 }
242 242
243 } // namespace ash 243 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698