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

Unified Diff: ash/system/status_area_widget.h

Issue 196473011: Attempting to reland the Overview Button Change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: ash/system/status_area_widget.h
diff --git a/ash/system/status_area_widget.h b/ash/system/status_area_widget.h
index 9933c73f2c9e7aae089ac03592e475930fb3d766..3b58a10cb8b059b01da44817eba5e3d07f0585b3 100644
--- a/ash/system/status_area_widget.h
+++ b/ash/system/status_area_widget.h
@@ -12,6 +12,7 @@
namespace ash {
+class OverviewButtonTray;
class ShellDelegate;
class SystemTray;
class WebNotificationTray;
@@ -56,6 +57,9 @@ class ASH_EXPORT StatusAreaWidget : public views::Widget {
WebNotificationTray* web_notification_tray() {
return web_notification_tray_;
}
+ OverviewButtonTray* overview_button_tray() {
+ return overview_button_tray_;
+ }
user::LoginStatus login_status() const { return login_status_; }
@@ -77,9 +81,11 @@ class ASH_EXPORT StatusAreaWidget : public views::Widget {
#if defined(OS_CHROMEOS)
void AddVirtualKeyboardTray();
#endif
+ void AddOverviewButtonTray();
// Weak pointers to View classes that are parented to StatusAreaWidget:
internal::StatusAreaWidgetDelegate* status_area_widget_delegate_;
+ OverviewButtonTray* overview_button_tray_;
SystemTray* system_tray_;
WebNotificationTray* web_notification_tray_;
LogoutButtonTray* logout_button_tray_;

Powered by Google App Engine
This is Rietveld 408576698