OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 | 206 |
207 void OnLanguageRemapSearchKeyToChanged(); | 207 void OnLanguageRemapSearchKeyToChanged(); |
208 | 208 |
209 void OnAccessibilityModeChanged( | 209 void OnAccessibilityModeChanged( |
210 ui::AccessibilityNotificationVisibility notify); | 210 ui::AccessibilityNotificationVisibility notify); |
211 | 211 |
212 void UpdatePerformanceTracing(); | 212 void UpdatePerformanceTracing(); |
213 | 213 |
214 // Overridden from InputMethodManager::Observer. | 214 // Overridden from InputMethodManager::Observer. |
215 void InputMethodChanged(input_method::InputMethodManager* manager, | 215 void InputMethodChanged(input_method::InputMethodManager* manager, |
| 216 Profile* profile, |
216 bool show_message) override; | 217 bool show_message) override; |
217 | 218 |
218 // Overridden from InputMethodMenuManager::Observer. | 219 // Overridden from InputMethodMenuManager::Observer. |
219 void InputMethodMenuItemChanged( | 220 void InputMethodMenuItemChanged( |
220 ui::ime::InputMethodMenuManager* manager) override; | 221 ui::ime::InputMethodMenuManager* manager) override; |
221 | 222 |
222 // Overridden from CrasAudioHandler::AudioObserver. | 223 // Overridden from CrasAudioHandler::AudioObserver. |
223 void OnOutputNodeVolumeChanged(uint64_t node_id, int volume) override; | 224 void OnOutputNodeVolumeChanged(uint64_t node_id, int volume) override; |
224 void OnOutputMuteChanged(bool mute_on) override; | 225 void OnOutputMuteChanged(bool mute_on) override; |
225 void OnInputNodeGainChanged(uint64_t node_id, int gain) override; | 226 void OnInputNodeGainChanged(uint64_t node_id, int gain) override; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 | 309 |
309 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; | 310 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; |
310 | 311 |
311 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 312 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
312 }; | 313 }; |
313 | 314 |
314 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 315 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
315 | 316 |
316 } // namespace chromeos | 317 } // namespace chromeos |
317 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 318 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
OLD | NEW |