| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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/launcher_item_controller.h" | 5 #include "chrome/browser/ui/ash/launcher/launcher_item_controller.h" |
| 6 | 6 |
| 7 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h" | 7 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h" |
| 8 #include "chrome/common/extensions/extension_constants.h" | 8 #include "chrome/common/extensions/extension_constants.h" |
| 9 | 9 |
| 10 LauncherItemController::LauncherItemController( | 10 LauncherItemController::LauncherItemController( |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 LauncherItemController::~LauncherItemController() {} | 21 LauncherItemController::~LauncherItemController() {} |
| 22 | 22 |
| 23 MenuItemList LauncherItemController::GetAppMenuItems(int event_flags) { | 23 MenuItemList LauncherItemController::GetAppMenuItems(int event_flags) { |
| 24 return MenuItemList(); | 24 return MenuItemList(); |
| 25 } | 25 } |
| 26 | 26 |
| 27 AppWindowLauncherItemController* | 27 AppWindowLauncherItemController* |
| 28 LauncherItemController::AsAppWindowLauncherItemController() { | 28 LauncherItemController::AsAppWindowLauncherItemController() { |
| 29 return nullptr; | 29 return nullptr; |
| 30 } | 30 } |
| 31 |
| 32 bool LauncherItemController::IsShortcut() const { |
| 33 return false; |
| 34 } |
| OLD | NEW |