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

Side by Side Diff: ash/system/audio/tray_audio.h

Issue 165393013: Resubmit 'Refactor the TrayAudio code so that it can be used by other platforms.' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT Created 6 years, 10 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 unified diff | Download patch
« no previous file with comments | « ash/system/audio/audio_observer.h ('k') | ash/system/audio/tray_audio.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 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_CHROMEOS_AUDIO_TRAY_AUDIO_H_ 5 #ifndef ASH_SYSTEM_AUDIO_TRAY_AUDIO_H_
6 #define ASH_SYSTEM_CHROMEOS_AUDIO_TRAY_AUDIO_H_ 6 #define ASH_SYSTEM_AUDIO_TRAY_AUDIO_H_
7 7
8 #include "ash/system/audio/audio_observer.h"
8 #include "ash/system/tray/tray_image_item.h" 9 #include "ash/system/tray/tray_image_item.h"
9 #include "chromeos/audio/cras_audio_handler.h" 10 #include "base/memory/scoped_ptr.h"
10 11
11 namespace ash { 12 namespace ash {
13
14 namespace system {
15 class TrayAudioDelegate;
16 }
17
12 namespace internal { 18 namespace internal {
13 19
14 namespace tray { 20 namespace tray {
15 class VolumeView; 21 class VolumeView;
16 class AudioDetailedView;
17 } 22 }
18 23
19 class TrayAudio : public TrayImageItem, 24 class TrayAudio : public TrayImageItem,
20 public chromeos::CrasAudioHandler::AudioObserver { 25 public AudioObserver {
21 public: 26 public:
22 explicit TrayAudio(SystemTray* system_tray); 27 TrayAudio(SystemTray* system_tray,
28 scoped_ptr<system::TrayAudioDelegate> audio_delegate);
23 virtual ~TrayAudio(); 29 virtual ~TrayAudio();
24 30
31 protected:
32 virtual void Update();
33
34 scoped_ptr<system::TrayAudioDelegate> audio_delegate_;
35 tray::VolumeView* volume_view_;
36
37 // True if VolumeView should be created for accelerator pop up;
38 // Otherwise, it should be created for detailed view in ash tray bubble.
39 bool pop_up_volume_view_;
40
25 private: 41 private:
26 // Overridden from TrayImageItem. 42 // Overridden from TrayImageItem.
27 virtual bool GetInitialVisibility() OVERRIDE; 43 virtual bool GetInitialVisibility() OVERRIDE;
28 44
29 // Overridden from SystemTrayItem. 45 // Overridden from SystemTrayItem.
30 virtual views::View* CreateDefaultView(user::LoginStatus status) OVERRIDE; 46 virtual views::View* CreateDefaultView(user::LoginStatus status) OVERRIDE;
31 virtual views::View* CreateDetailedView(user::LoginStatus status) OVERRIDE; 47 virtual views::View* CreateDetailedView(user::LoginStatus status) OVERRIDE;
32 virtual void DestroyDefaultView() OVERRIDE; 48 virtual void DestroyDefaultView() OVERRIDE;
33 virtual void DestroyDetailedView() OVERRIDE; 49 virtual void DestroyDetailedView() OVERRIDE;
34 virtual bool ShouldHideArrow() const OVERRIDE; 50 virtual bool ShouldHideArrow() const OVERRIDE;
35 virtual bool ShouldShowShelf() const OVERRIDE; 51 virtual bool ShouldShowShelf() const OVERRIDE;
36 52
37 // Overridden from chromeos::CrasAudioHandler::AudioObserver. 53 // Overridden from AudioObserver.
38 virtual void OnOutputVolumeChanged() OVERRIDE; 54 virtual void OnOutputVolumeChanged() OVERRIDE;
39 virtual void OnOutputMuteChanged() OVERRIDE; 55 virtual void OnOutputMuteChanged() OVERRIDE;
40 virtual void OnInputGainChanged() OVERRIDE;
41 virtual void OnInputMuteChanged() OVERRIDE;
42 virtual void OnAudioNodesChanged() OVERRIDE; 56 virtual void OnAudioNodesChanged() OVERRIDE;
43 virtual void OnActiveOutputNodeChanged() OVERRIDE; 57 virtual void OnActiveOutputNodeChanged() OVERRIDE;
44 virtual void OnActiveInputNodeChanged() OVERRIDE; 58 virtual void OnActiveInputNodeChanged() OVERRIDE;
45 59
46 void Update();
47
48 tray::VolumeView* volume_view_;
49 tray::AudioDetailedView* audio_detail_;
50
51 // True if VolumeView should be created for accelerator pop up;
52 // Otherwise, it should be created for detailed view in ash tray bubble.
53 bool pop_up_volume_view_;
54
55 DISALLOW_COPY_AND_ASSIGN(TrayAudio); 60 DISALLOW_COPY_AND_ASSIGN(TrayAudio);
56 }; 61 };
57 62
58 } // namespace internal 63 } // namespace internal
59 } // namespace ash 64 } // namespace ash
60 65
61 #endif // ASH_SYSTEM_CHROMEOS_AUDIO_TRAY_AUDIO_H_ 66 #endif // ASH_SYSTEM_AUDIO_TRAY_AUDIO_H_
OLDNEW
« no previous file with comments | « ash/system/audio/audio_observer.h ('k') | ash/system/audio/tray_audio.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698