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

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

Issue 2791803002: mash: Move LauncherItemController to ash, rename ShelfItemDelegate. (Closed)
Patch Set: Sync and rebase. 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
(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 }
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