| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ash/public/cpp/shelf_item_delegate.h" |
| 6 |
| 7 namespace ash { |
| 8 |
| 9 ShelfItemDelegate::ShelfItemDelegate(const ash::AppLaunchId& app_launch_id) |
| 10 : app_launch_id_(app_launch_id), |
| 11 shelf_id_(kInvalidShelfID), |
| 12 image_set_by_controller_(false) {} |
| 13 |
| 14 ShelfItemDelegate::~ShelfItemDelegate() {} |
| 15 |
| 16 MenuItemList ShelfItemDelegate::GetAppMenuItems(int event_flags) { |
| 17 return MenuItemList(); |
| 18 } |
| 19 |
| 20 AppWindowLauncherItemController* |
| 21 ShelfItemDelegate::AsAppWindowLauncherItemController() { |
| 22 return nullptr; |
| 23 } |
| 24 |
| 25 } // namespace ash |
| OLD | NEW |