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

Side by Side Diff: ash/system/tray/system_tray_notifier.h

Issue 1268593002: Fix the UI issue for showing output muted in ash tray after the device wakes up with hdmi output re… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2454
Patch Set: Created 5 years, 4 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/tray_audio.cc ('k') | ash/system/tray/system_tray_notifier.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 (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_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ 5 #ifndef ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_
6 #define ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ 6 #define ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 void AddLastWindowClosedObserver(LastWindowClosedObserver* observer); 104 void AddLastWindowClosedObserver(LastWindowClosedObserver* observer);
105 void RemoveLastWindowClosedObserver(LastWindowClosedObserver* observer); 105 void RemoveLastWindowClosedObserver(LastWindowClosedObserver* observer);
106 106
107 void AddVirtualKeyboardObserver(VirtualKeyboardObserver* observer); 107 void AddVirtualKeyboardObserver(VirtualKeyboardObserver* observer);
108 void RemoveVirtualKeyboardObserver(VirtualKeyboardObserver* observer); 108 void RemoveVirtualKeyboardObserver(VirtualKeyboardObserver* observer);
109 #endif 109 #endif
110 110
111 void NotifyAccessibilityModeChanged( 111 void NotifyAccessibilityModeChanged(
112 ui::AccessibilityNotificationVisibility notify); 112 ui::AccessibilityNotificationVisibility notify);
113 void NotifyAudioOutputVolumeChanged(uint64_t node_id, double volume); 113 void NotifyAudioOutputVolumeChanged(uint64_t node_id, double volume);
114 void NotifyAudioOutputMuteChanged(bool mute_on); 114 void NotifyAudioOutputMuteChanged(bool mute_on, bool system_adjust);
115 void NotifyAudioNodesChanged(); 115 void NotifyAudioNodesChanged();
116 void NotifyAudioActiveOutputNodeChanged(); 116 void NotifyAudioActiveOutputNodeChanged();
117 void NotifyAudioActiveInputNodeChanged(); 117 void NotifyAudioActiveInputNodeChanged();
118 void NotifyTracingModeChanged(bool value); 118 void NotifyTracingModeChanged(bool value);
119 void NotifyRefreshBluetooth(); 119 void NotifyRefreshBluetooth();
120 void NotifyBluetoothDiscoveringChanged(); 120 void NotifyBluetoothDiscoveringChanged();
121 void NotifyRefreshClock(); 121 void NotifyRefreshClock();
122 void NotifyDateFormatChanged(); 122 void NotifyDateFormatChanged();
123 void NotifySystemClockTimeUpdated(); 123 void NotifySystemClockTimeUpdated();
124 void NotifySystemClockCanSetTimeChanged(bool can_set_time); 124 void NotifySystemClockCanSetTimeChanged(bool can_set_time);
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 base::ObserverList<LastWindowClosedObserver> last_window_closed_observers_; 173 base::ObserverList<LastWindowClosedObserver> last_window_closed_observers_;
174 base::ObserverList<VirtualKeyboardObserver> virtual_keyboard_observers_; 174 base::ObserverList<VirtualKeyboardObserver> virtual_keyboard_observers_;
175 #endif 175 #endif
176 176
177 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); 177 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier);
178 }; 178 };
179 179
180 } // namespace ash 180 } // namespace ash
181 181
182 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ 182 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_
OLDNEW
« no previous file with comments | « ash/system/audio/tray_audio.cc ('k') | ash/system/tray/system_tray_notifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698