| 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_DELEGATE_H_ | 5 #ifndef ASH_COMMON_SYSTEM_STATUS_AREA_WIDGET_DELEGATE_H_ |
| 6 #define ASH_COMMON_SYSTEM_STATUS_AREA_WIDGET_DELEGATE_H_ | 6 #define ASH_COMMON_SYSTEM_STATUS_AREA_WIDGET_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/common/shelf/shelf_types.h" | 9 #include "ash/public/cpp/shelf_types.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "ui/gfx/image/image_skia.h" | 11 #include "ui/gfx/image/image_skia.h" |
| 12 #include "ui/views/accessible_pane_view.h" | 12 #include "ui/views/accessible_pane_view.h" |
| 13 #include "ui/views/widget/widget_delegate.h" | 13 #include "ui/views/widget/widget_delegate.h" |
| 14 | 14 |
| 15 namespace ash { | 15 namespace ash { |
| 16 class FocusCycler; | 16 class FocusCycler; |
| 17 | 17 |
| 18 // The View for the status area widget. | 18 // The View for the status area widget. |
| 19 class ASH_EXPORT StatusAreaWidgetDelegate : public views::AccessiblePaneView, | 19 class ASH_EXPORT StatusAreaWidgetDelegate : public views::AccessiblePaneView, |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 // TODO(jamescook): Get this from WmShelf. | 83 // TODO(jamescook): Get this from WmShelf. |
| 84 ShelfAlignment alignment_; | 84 ShelfAlignment alignment_; |
| 85 | 85 |
| 86 DISALLOW_COPY_AND_ASSIGN(StatusAreaWidgetDelegate); | 86 DISALLOW_COPY_AND_ASSIGN(StatusAreaWidgetDelegate); |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 } // namespace ash | 89 } // namespace ash |
| 90 | 90 |
| 91 #endif // ASH_COMMON_SYSTEM_STATUS_AREA_WIDGET_DELEGATE_H_ | 91 #endif // ASH_COMMON_SYSTEM_STATUS_AREA_WIDGET_DELEGATE_H_ |
| OLD | NEW |