| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 gfx::NativeWindow GetNativeWindow() const; | 196 gfx::NativeWindow GetNativeWindow() const; |
| 197 | 197 |
| 198 // content::NotificationObserver implementation. | 198 // content::NotificationObserver implementation. |
| 199 virtual void Observe(int type, | 199 virtual void Observe(int type, |
| 200 const content::NotificationSource& source, | 200 const content::NotificationSource& source, |
| 201 const content::NotificationDetails& details) override; | 201 const content::NotificationDetails& details) override; |
| 202 | 202 |
| 203 void OnLanguageRemapSearchKeyToChanged(); | 203 void OnLanguageRemapSearchKeyToChanged(); |
| 204 | 204 |
| 205 void OnAccessibilityModeChanged( | 205 void OnAccessibilityModeChanged( |
| 206 ash::AccessibilityNotificationVisibility notify); | 206 ui::AccessibilityNotificationVisibility notify); |
| 207 | 207 |
| 208 void UpdatePerformanceTracing(); | 208 void UpdatePerformanceTracing(); |
| 209 | 209 |
| 210 // Overridden from InputMethodManager::Observer. | 210 // Overridden from InputMethodManager::Observer. |
| 211 virtual void InputMethodChanged(input_method::InputMethodManager* manager, | 211 virtual void InputMethodChanged(input_method::InputMethodManager* manager, |
| 212 bool show_message) override; | 212 bool show_message) override; |
| 213 | 213 |
| 214 // Overridden from InputMethodMenuManager::Observer. | 214 // Overridden from InputMethodMenuManager::Observer. |
| 215 virtual void InputMethodMenuItemChanged( | 215 virtual void InputMethodMenuItemChanged( |
| 216 ash::ime::InputMethodMenuManager* manager) override; | 216 ash::ime::InputMethodMenuManager* manager) override; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 | 290 |
| 291 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; | 291 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; |
| 292 | 292 |
| 293 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 293 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
| 294 }; | 294 }; |
| 295 | 295 |
| 296 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 296 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
| 297 | 297 |
| 298 } // namespace chromeos | 298 } // namespace chromeos |
| 299 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 299 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| OLD | NEW |