| OLD | NEW |
| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); | 108 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); |
| 109 icon_image = *rb.GetImageSkiaNamed(IDR_DEFAULT_FAVICON); | 109 icon_image = *rb.GetImageSkiaNamed(IDR_DEFAULT_FAVICON); |
| 110 } | 110 } |
| 111 return icon_image; | 111 return icon_image; |
| 112 } | 112 } |
| 113 | 113 |
| 114 // Returns the WmShelf instance for the display with the given |display_id|. | 114 // Returns the WmShelf instance for the display with the given |display_id|. |
| 115 WmShelf* GetShelfForDisplay(int64_t display_id) { | 115 WmShelf* GetShelfForDisplay(int64_t display_id) { |
| 116 // The controller may be null for invalid ids or for displays being removed. | 116 // The controller may be null for invalid ids or for displays being removed. |
| 117 RootWindowController* root_window_controller = | 117 RootWindowController* root_window_controller = |
| 118 WmLookup::Get()->GetRootWindowControllerWithDisplayId(display_id); | 118 Shell::GetRootWindowControllerWithDisplayId(display_id); |
| 119 return root_window_controller ? root_window_controller->GetShelf() : nullptr; | 119 return root_window_controller ? root_window_controller->GetShelf() : nullptr; |
| 120 } | 120 } |
| 121 | 121 |
| 122 } // namespace | 122 } // namespace |
| 123 | 123 |
| 124 ShelfController::ShelfController() {} | 124 ShelfController::ShelfController() {} |
| 125 | 125 |
| 126 ShelfController::~ShelfController() {} | 126 ShelfController::~ShelfController() {} |
| 127 | 127 |
| 128 void ShelfController::BindRequest(mojom::ShelfControllerRequest request) { | 128 void ShelfController::BindRequest(mojom::ShelfControllerRequest request) { |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 return; | 235 return; |
| 236 ShelfID shelf_id = app_id_to_shelf_id_[app_id]; | 236 ShelfID shelf_id = app_id_to_shelf_id_[app_id]; |
| 237 int index = model_.ItemIndexByID(shelf_id); | 237 int index = model_.ItemIndexByID(shelf_id); |
| 238 DCHECK_GE(index, 0); | 238 DCHECK_GE(index, 0); |
| 239 ShelfItem item = *model_.ItemByID(shelf_id); | 239 ShelfItem item = *model_.ItemByID(shelf_id); |
| 240 item.image = GetShelfIconFromBitmap(image); | 240 item.image = GetShelfIconFromBitmap(image); |
| 241 model_.Set(index, item); | 241 model_.Set(index, item); |
| 242 } | 242 } |
| 243 | 243 |
| 244 } // namespace ash | 244 } // namespace ash |
| OLD | NEW |