| 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 "chrome/browser/ui/ash/launcher/chrome_launcher_controller_mus.h" | 5 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller_mus.h" |
| 6 | 6 |
| 7 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
| 8 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/browser/profiles/profile_manager.h" | 9 #include "chrome/browser/profiles/profile_manager.h" |
| 10 #include "chrome/browser/ui/ash/chrome_launcher_prefs.h" | 10 #include "chrome/browser/ui/ash/chrome_launcher_prefs.h" |
| 11 #include "chrome/browser/ui/ash/launcher/launcher_controller_helper.h" | 11 #include "chrome/browser/ui/ash/launcher/launcher_controller_helper.h" |
| 12 #include "extensions/grit/extensions_browser_resources.h" | 12 #include "extensions/grit/extensions_browser_resources.h" |
| 13 #include "mojo/common/common_type_converters.h" | 13 #include "mojo/common/common_type_converters.h" |
| 14 #include "ui/base/resource/resource_bundle.h" | 14 #include "ui/base/resource/resource_bundle.h" |
| 15 #include "ui/events/event_constants.h" |
| 15 | 16 |
| 16 class ChromeShelfItemDelegate : public ash::mojom::ShelfItemDelegate { | 17 class ChromeShelfItemDelegate : public ash::mojom::ShelfItemDelegate { |
| 17 public: | 18 public: |
| 18 explicit ChromeShelfItemDelegate(const std::string& app_id, | 19 explicit ChromeShelfItemDelegate(const std::string& app_id, |
| 19 ChromeLauncherController* controller) | 20 ChromeLauncherController* controller) |
| 20 : app_id_(app_id), | 21 : app_id_(app_id), |
| 21 item_delegate_binding_(this), | 22 item_delegate_binding_(this), |
| 22 controller_(controller) {} | 23 controller_(controller) {} |
| 23 ~ChromeShelfItemDelegate() override {} | 24 ~ChromeShelfItemDelegate() override {} |
| 24 | 25 |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 app_id_to_item_delegate_.insert( | 304 app_id_to_item_delegate_.insert( |
| 304 std::make_pair(app_id, std::move(delegate))); | 305 std::make_pair(app_id, std::move(delegate))); |
| 305 | 306 |
| 306 AppIconLoader* app_icon_loader = GetAppIconLoaderForApp(app_id); | 307 AppIconLoader* app_icon_loader = GetAppIconLoaderForApp(app_id); |
| 307 if (app_icon_loader) { | 308 if (app_icon_loader) { |
| 308 app_icon_loader->FetchImage(app_id); | 309 app_icon_loader->FetchImage(app_id); |
| 309 app_icon_loader->UpdateImage(app_id); | 310 app_icon_loader->UpdateImage(app_id); |
| 310 } | 311 } |
| 311 } | 312 } |
| 312 } | 313 } |
| OLD | NEW |