| 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_TRAY_AUDIO_H_ | 5 #ifndef ASH_SYSTEM_AUDIO_TRAY_AUDIO_H_ |
| 6 #define ASH_SYSTEM_AUDIO_TRAY_AUDIO_H_ | 6 #define ASH_SYSTEM_AUDIO_TRAY_AUDIO_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "ash/system/audio/audio_observer.h" | 12 #include "ash/system/audio/audio_observer.h" |
| 13 #include "ash/system/tray/tray_image_item.h" | 13 #include "ash/system/tray/tray_image_item.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "ui/gfx/display_observer.h" | 15 #include "ui/display/display_observer.h" |
| 16 | 16 |
| 17 namespace ash { | 17 namespace ash { |
| 18 | 18 |
| 19 namespace system { | 19 namespace system { |
| 20 class TrayAudioDelegate; | 20 class TrayAudioDelegate; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace tray { | 23 namespace tray { |
| 24 class VolumeView; | 24 class VolumeView; |
| 25 } | 25 } |
| 26 | 26 |
| 27 class TrayAudio : public TrayImageItem, | 27 class TrayAudio : public TrayImageItem, |
| 28 public AudioObserver, | 28 public AudioObserver, |
| 29 public gfx::DisplayObserver { | 29 public display::DisplayObserver { |
| 30 public: | 30 public: |
| 31 TrayAudio(SystemTray* system_tray, | 31 TrayAudio(SystemTray* system_tray, |
| 32 std::unique_ptr<system::TrayAudioDelegate> audio_delegate); | 32 std::unique_ptr<system::TrayAudioDelegate> audio_delegate); |
| 33 ~TrayAudio() override; | 33 ~TrayAudio() override; |
| 34 | 34 |
| 35 static bool ShowAudioDeviceMenu(); | 35 static bool ShowAudioDeviceMenu(); |
| 36 | 36 |
| 37 protected: | 37 protected: |
| 38 // Overridden from gfx::DisplayObserver. | 38 // Overridden from display::DisplayObserver. |
| 39 void OnDisplayAdded(const gfx::Display& new_display) override; | 39 void OnDisplayAdded(const display::Display& new_display) override; |
| 40 void OnDisplayRemoved(const gfx::Display& old_display) override; | 40 void OnDisplayRemoved(const display::Display& old_display) override; |
| 41 void OnDisplayMetricsChanged(const gfx::Display& display, | 41 void OnDisplayMetricsChanged(const display::Display& display, |
| 42 uint32_t changed_metrics) override; | 42 uint32_t changed_metrics) override; |
| 43 | 43 |
| 44 virtual void Update(); | 44 virtual void Update(); |
| 45 | 45 |
| 46 std::unique_ptr<system::TrayAudioDelegate> audio_delegate_; | 46 std::unique_ptr<system::TrayAudioDelegate> audio_delegate_; |
| 47 tray::VolumeView* volume_view_; | 47 tray::VolumeView* volume_view_; |
| 48 | 48 |
| 49 // True if VolumeView should be created for accelerator pop up; | 49 // True if VolumeView should be created for accelerator pop up; |
| 50 // Otherwise, it should be created for detailed view in ash tray bubble. | 50 // Otherwise, it should be created for detailed view in ash tray bubble. |
| 51 bool pop_up_volume_view_; | 51 bool pop_up_volume_view_; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 70 void OnActiveInputNodeChanged() override; | 70 void OnActiveInputNodeChanged() override; |
| 71 | 71 |
| 72 void ChangeInternalSpeakerChannelMode(); | 72 void ChangeInternalSpeakerChannelMode(); |
| 73 | 73 |
| 74 DISALLOW_COPY_AND_ASSIGN(TrayAudio); | 74 DISALLOW_COPY_AND_ASSIGN(TrayAudio); |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace ash | 77 } // namespace ash |
| 78 | 78 |
| 79 #endif // ASH_SYSTEM_AUDIO_TRAY_AUDIO_H_ | 79 #endif // ASH_SYSTEM_AUDIO_TRAY_AUDIO_H_ |
| OLD | NEW |