| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SYSTEM_AUDIO_VOLUME_VIEW_H_ | 5 #ifndef ASH_SYSTEM_AUDIO_VOLUME_VIEW_H_ |
| 6 #define ASH_SYSTEM_AUDIO_VOLUME_VIEW_H_ | 6 #define ASH_SYSTEM_AUDIO_VOLUME_VIEW_H_ |
| 7 | 7 |
| 8 #include "ash/system/tray/actionable_view.h" | 8 #include "ash/system/tray/actionable_view.h" |
| 9 #include "ui/gfx/font.h" | 9 #include "ui/gfx/font.h" |
| 10 #include "ui/views/controls/button/button.h" | 10 #include "ui/views/controls/button/button.h" |
| 11 #include "ui/views/controls/slider.h" | 11 #include "ui/views/controls/slider.h" |
| 12 | 12 |
| 13 namespace views { | 13 namespace views { |
| 14 class View; | 14 class View; |
| 15 class ImageView; | 15 class ImageView; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace ash { | 18 namespace ash { |
| 19 | 19 |
| 20 class SystemTrayItem; | 20 class SystemTrayItem; |
| 21 | 21 |
| 22 namespace system { | 22 namespace system { |
| 23 class TrayAudioDelegate; | 23 class TrayAudioDelegate; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace internal { | 26 namespace internal { |
| 27 | 27 |
| 28 class HoverHighlightView; | |
| 29 | |
| 30 namespace tray { | 28 namespace tray { |
| 31 | 29 |
| 32 class BarSeparator; | 30 class BarSeparator; |
| 33 class VolumeButton; | 31 class VolumeButton; |
| 34 class VolumeSlider; | 32 class VolumeSlider; |
| 35 | 33 |
| 36 class VolumeView : public ActionableView, | 34 class VolumeView : public ActionableView, |
| 37 public views::ButtonListener, | 35 public views::ButtonListener, |
| 38 public views::SliderListener { | 36 public views::SliderListener { |
| 39 public: | 37 public: |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 | 79 |
| 82 DISALLOW_COPY_AND_ASSIGN(VolumeView); | 80 DISALLOW_COPY_AND_ASSIGN(VolumeView); |
| 83 }; | 81 }; |
| 84 | 82 |
| 85 } // namespace tray | 83 } // namespace tray |
| 86 } // namespace internal | 84 } // namespace internal |
| 87 } // namespace ash | 85 } // namespace ash |
| 88 | 86 |
| 89 #endif // ASH_SYSTEM_AUDIO_VOLUME_VIEW_H_ | 87 #endif // ASH_SYSTEM_AUDIO_VOLUME_VIEW_H_ |
| 90 | 88 |
| OLD | NEW |