Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: chrome/browser/ui/ash/launcher/launcher_item_controller.cc

Issue 2747983002: arc: Fix crash on deferred app launch. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698