| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 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 "chrome/browser/ui/ash/launcher/launcher_item_controller.h" | |
| 6 | |
| 7 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h" | |
| 8 #include "chrome/common/extensions/extension_constants.h" | |
| 9 | |
| 10 LauncherItemController::LauncherItemController( | |
| 11 const ash::AppLaunchId& app_launch_id, | |
| 12 ChromeLauncherController* launcher_controller) | |
| 13 : app_launch_id_(app_launch_id), | |
| 14 shelf_id_(0), | |
| 15 launcher_controller_(launcher_controller), | |
| 16 image_set_by_controller_(false) {} | |
| 17 | |
| 18 LauncherItemController::~LauncherItemController() {} | |
| 19 | |
| 20 MenuItemList LauncherItemController::GetAppMenuItems(int event_flags) { | |
| 21 return MenuItemList(); | |
| 22 } | |
| 23 | |
| 24 AppWindowLauncherItemController* | |
| 25 LauncherItemController::AsAppWindowLauncherItemController() { | |
| 26 return nullptr; | |
| 27 } | |
| OLD | NEW |