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 <vector> | 8 #include <vector> |
9 | 9 |
10 #include "ash/ime/input_method_menu_manager.h" | 10 #include "ash/ime/input_method_menu_manager.h" |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 gfx::NativeWindow GetNativeWindow() const; | 187 gfx::NativeWindow GetNativeWindow() const; |
188 | 188 |
189 // content::NotificationObserver implementation. | 189 // content::NotificationObserver implementation. |
190 void Observe(int type, | 190 void Observe(int type, |
191 const content::NotificationSource& source, | 191 const content::NotificationSource& source, |
192 const content::NotificationDetails& details) override; | 192 const content::NotificationDetails& details) override; |
193 | 193 |
194 void OnLanguageRemapSearchKeyToChanged(); | 194 void OnLanguageRemapSearchKeyToChanged(); |
195 | 195 |
196 void OnAccessibilityModeChanged( | 196 void OnAccessibilityModeChanged( |
197 ash::AccessibilityNotificationVisibility notify); | 197 ui::AccessibilityNotificationVisibility notify); |
198 | 198 |
199 void UpdatePerformanceTracing(); | 199 void UpdatePerformanceTracing(); |
200 | 200 |
201 // Overridden from InputMethodManager::Observer. | 201 // Overridden from InputMethodManager::Observer. |
202 void InputMethodChanged(input_method::InputMethodManager* manager, | 202 void InputMethodChanged(input_method::InputMethodManager* manager, |
203 bool show_message) override; | 203 bool show_message) override; |
204 | 204 |
205 // Overridden from InputMethodMenuManager::Observer. | 205 // Overridden from InputMethodMenuManager::Observer. |
206 void InputMethodMenuItemChanged( | 206 void InputMethodMenuItemChanged( |
207 ash::ime::InputMethodMenuManager* manager) override; | 207 ash::ime::InputMethodMenuManager* manager) override; |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 | 281 |
282 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; | 282 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; |
283 | 283 |
284 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 284 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
285 }; | 285 }; |
286 | 286 |
287 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 287 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
288 | 288 |
289 } // namespace chromeos | 289 } // namespace chromeos |
290 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 290 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
OLD | NEW |