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

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

Issue 2790803002: mash: Remove V1 app shelf item locking; monitor running status instead. (Closed)
Patch Set: spelling Created 3 years, 8 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
« no previous file with comments | « chrome/browser/ui/ash/launcher/launcher_item_controller.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(
11 const ash::AppLaunchId& app_launch_id, 11 const ash::AppLaunchId& app_launch_id,
12 ChromeLauncherController* launcher_controller) 12 ChromeLauncherController* launcher_controller)
13 : app_launch_id_(app_launch_id), 13 : app_launch_id_(app_launch_id),
14 shelf_id_(0), 14 shelf_id_(0),
15 launcher_controller_(launcher_controller), 15 launcher_controller_(launcher_controller),
16 locked_(0),
17 image_set_by_controller_(false) {} 16 image_set_by_controller_(false) {}
18 17
19 LauncherItemController::~LauncherItemController() {} 18 LauncherItemController::~LauncherItemController() {}
20 19
21 MenuItemList LauncherItemController::GetAppMenuItems(int event_flags) { 20 MenuItemList LauncherItemController::GetAppMenuItems(int event_flags) {
22 return MenuItemList(); 21 return MenuItemList();
23 } 22 }
24 23
25 AppWindowLauncherItemController* 24 AppWindowLauncherItemController*
26 LauncherItemController::AsAppWindowLauncherItemController() { 25 LauncherItemController::AsAppWindowLauncherItemController() {
27 return nullptr; 26 return nullptr;
28 } 27 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/launcher/launcher_item_controller.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698