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

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

Issue 2462753002: Use Ash's ShelfWindowWatcher for app panel windows. (Closed)
Patch Set: Add ShelfWindowWatcherTest, remove ChromeLauncherControllerImplTest panel use. Created 4 years, 1 month 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 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_ 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "ash/common/shelf/shelf_item_delegate.h" 10 #include "ash/common/shelf/shelf_item_delegate.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 DCHECK(locked_); 61 DCHECK(locked_);
62 locked_--; 62 locked_--;
63 } 63 }
64 bool locked() const { return locked_ > 0; } 64 bool locked() const { return locked_ > 0; }
65 65
66 bool image_set_by_controller() const { return image_set_by_controller_; } 66 bool image_set_by_controller() const { return image_set_by_controller_; }
67 void set_image_set_by_controller(bool image_set_by_controller) { 67 void set_image_set_by_controller(bool image_set_by_controller) {
68 image_set_by_controller_ = image_set_by_controller; 68 image_set_by_controller_ = image_set_by_controller;
69 } 69 }
70 70
71 // Returns true if this item is open.
72 virtual bool IsOpen() const = 0;
73
74 // Returns true if this item is visible (e.g. not minimized). 71 // Returns true if this item is visible (e.g. not minimized).
75 virtual bool IsVisible() const = 0; 72 virtual bool IsVisible() const = 0;
76 73
77 // Launches a new instance of the app associated with this item. 74 // Launches a new instance of the app associated with this item.
78 virtual void Launch(ash::LaunchSource source, int event_flags) = 0; 75 virtual void Launch(ash::LaunchSource source, int event_flags) = 0;
79 76
80 // Shows and activates the most-recently-active window associated with the 77 // Shows and activates the most-recently-active window associated with the
81 // item, or launches the item if it is not currently open. 78 // item, or launches the item if it is not currently open.
82 // Returns the action performed by activating the item. 79 // Returns the action performed by activating the item.
83 virtual PerformedAction Activate(ash::LaunchSource source) = 0; 80 virtual PerformedAction Activate(ash::LaunchSource source) = 0;
(...skipping 21 matching lines...) Expand all
105 // applications. 102 // applications.
106 int locked_; 103 int locked_;
107 104
108 // Set to true if the launcher item image has been set by the controller. 105 // Set to true if the launcher item image has been set by the controller.
109 bool image_set_by_controller_; 106 bool image_set_by_controller_;
110 107
111 DISALLOW_COPY_AND_ASSIGN(LauncherItemController); 108 DISALLOW_COPY_AND_ASSIGN(LauncherItemController);
112 }; 109 };
113 110
114 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_ 111 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698