| OLD | NEW |
| 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 ASH_COMMON_SYSTEM_STATUS_AREA_WIDGET_H_ | 5 #ifndef ASH_COMMON_SYSTEM_STATUS_AREA_WIDGET_H_ |
| 6 #define ASH_COMMON_SYSTEM_STATUS_AREA_WIDGET_H_ | 6 #define ASH_COMMON_SYSTEM_STATUS_AREA_WIDGET_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/common/login_status.h" | 9 #include "ash/common/login_status.h" |
| 10 #include "ash/common/shelf/shelf_background_animator_observer.h" | 10 #include "ash/common/shelf/shelf_background_animator_observer.h" |
| 11 #include "ash/public/cpp/shelf_types.h" | 11 #include "ash/public/cpp/shelf_types.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "ui/views/widget/widget.h" | 13 #include "ui/views/widget/widget.h" |
| 14 | 14 |
| 15 namespace ash { | 15 namespace ash { |
| 16 class OverviewButtonTray; | 16 class OverviewButtonTray; |
| 17 class ShellDelegate; | |
| 18 class StatusAreaWidgetDelegate; | 17 class StatusAreaWidgetDelegate; |
| 19 class SystemTray; | 18 class SystemTray; |
| 20 class TrayBackgroundView; | 19 class TrayBackgroundView; |
| 21 class WebNotificationTray; | 20 class WebNotificationTray; |
| 22 class WmShelf; | 21 class WmShelf; |
| 23 class WmWindow; | 22 class WmWindow; |
| 24 #if defined(OS_CHROMEOS) | 23 #if defined(OS_CHROMEOS) |
| 25 class ImeMenuTray; | 24 class ImeMenuTray; |
| 26 class LogoutButtonTray; | 25 class LogoutButtonTray; |
| 27 class PaletteTray; | 26 class PaletteTray; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 LoginStatus login_status_; | 121 LoginStatus login_status_; |
| 123 | 122 |
| 124 WmShelf* wm_shelf_; | 123 WmShelf* wm_shelf_; |
| 125 | 124 |
| 126 DISALLOW_COPY_AND_ASSIGN(StatusAreaWidget); | 125 DISALLOW_COPY_AND_ASSIGN(StatusAreaWidget); |
| 127 }; | 126 }; |
| 128 | 127 |
| 129 } // namespace ash | 128 } // namespace ash |
| 130 | 129 |
| 131 #endif // ASH_COMMON_SYSTEM_STATUS_AREA_WIDGET_H_ | 130 #endif // ASH_COMMON_SYSTEM_STATUS_AREA_WIDGET_H_ |
| OLD | NEW |