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

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

Issue 2484413002: Enhance chrome.app.window API with title property
Patch Set: Rebase Created 4 years 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(
11 Type type, 11 Type type,
12 const std::string& app_id, 12 const std::string& app_id,
13 const std::string& launch_id, 13 const std::string& launch_id,
14 const std::string& title,
14 ChromeLauncherController* launcher_controller) 15 ChromeLauncherController* launcher_controller)
15 : type_(type), 16 : type_(type),
16 app_id_(app_id), 17 app_id_(app_id),
17 launch_id_(launch_id), 18 launch_id_(launch_id),
19 title_(title),
18 shelf_id_(0), 20 shelf_id_(0),
19 launcher_controller_(launcher_controller), 21 launcher_controller_(launcher_controller),
20 locked_(0), 22 locked_(0),
21 image_set_by_controller_(false) {} 23 image_set_by_controller_(false) {}
22 24
23 LauncherItemController::~LauncherItemController() {} 25 LauncherItemController::~LauncherItemController() {}
24 26
25 ash::ShelfItemType LauncherItemController::GetShelfItemType() const { 27 ash::ShelfItemType LauncherItemController::GetShelfItemType() const {
26 if (extension_misc::IsImeMenuExtensionId(app_id_)) 28 if (extension_misc::IsImeMenuExtensionId(app_id_))
27 return ash::TYPE_IME_MENU; 29 return ash::TYPE_IME_MENU;
28 30
29 switch (type_) { 31 switch (type_) {
30 case LauncherItemController::TYPE_SHORTCUT: 32 case LauncherItemController::TYPE_SHORTCUT:
31 case LauncherItemController::TYPE_WINDOWED_APP: 33 case LauncherItemController::TYPE_WINDOWED_APP:
32 return ash::TYPE_APP_SHORTCUT; 34 return ash::TYPE_APP_SHORTCUT;
33 case LauncherItemController::TYPE_APP: 35 case LauncherItemController::TYPE_APP:
34 return ash::TYPE_PLATFORM_APP; 36 return ash::TYPE_PLATFORM_APP;
35 case LauncherItemController::TYPE_APP_PANEL: 37 case LauncherItemController::TYPE_APP_PANEL:
36 return ash::TYPE_APP_PANEL; 38 return ash::TYPE_APP_PANEL;
37 } 39 }
38 NOTREACHED(); 40 NOTREACHED();
39 return ash::TYPE_APP_SHORTCUT; 41 return ash::TYPE_APP_SHORTCUT;
40 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698