| 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 "apps/app_window_registry.h" | 8 #include "apps/app_window_registry.h" |
| 9 #include "ash/ime/input_method_menu_manager.h" | 9 #include "ash/ime/input_method_menu_manager.h" |
| 10 #include "ash/session_state_observer.h" | 10 #include "ash/session_state_observer.h" |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 virtual const base::string16 GetEnterpriseMessage() const OVERRIDE; | 67 virtual const base::string16 GetEnterpriseMessage() const OVERRIDE; |
| 68 virtual const std::string GetLocallyManagedUserManager() const OVERRIDE; | 68 virtual const std::string GetLocallyManagedUserManager() const OVERRIDE; |
| 69 virtual const base::string16 GetLocallyManagedUserManagerName() | 69 virtual const base::string16 GetLocallyManagedUserManagerName() |
| 70 const OVERRIDE; | 70 const OVERRIDE; |
| 71 virtual const base::string16 GetLocallyManagedUserMessage() const OVERRIDE; | 71 virtual const base::string16 GetLocallyManagedUserMessage() const OVERRIDE; |
| 72 virtual bool SystemShouldUpgrade() const OVERRIDE; | 72 virtual bool SystemShouldUpgrade() const OVERRIDE; |
| 73 virtual base::HourClockType GetHourClockType() const OVERRIDE; | 73 virtual base::HourClockType GetHourClockType() const OVERRIDE; |
| 74 virtual void ShowSettings() OVERRIDE; | 74 virtual void ShowSettings() OVERRIDE; |
| 75 virtual bool ShouldShowSettings() OVERRIDE; | 75 virtual bool ShouldShowSettings() OVERRIDE; |
| 76 virtual void ShowDateSettings() OVERRIDE; | 76 virtual void ShowDateSettings() OVERRIDE; |
| 77 virtual void ShowSetTimeDialog() OVERRIDE; |
| 77 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE; | 78 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE; |
| 78 virtual void ShowBluetoothSettings() OVERRIDE; | 79 virtual void ShowBluetoothSettings() OVERRIDE; |
| 79 virtual void ShowDisplaySettings() OVERRIDE; | 80 virtual void ShowDisplaySettings() OVERRIDE; |
| 80 virtual void ShowChromeSlow() OVERRIDE; | 81 virtual void ShowChromeSlow() OVERRIDE; |
| 81 virtual bool ShouldShowDisplayNotification() OVERRIDE; | 82 virtual bool ShouldShowDisplayNotification() OVERRIDE; |
| 82 virtual void ShowDriveSettings() OVERRIDE; | 83 virtual void ShowDriveSettings() OVERRIDE; |
| 83 virtual void ShowIMESettings() OVERRIDE; | 84 virtual void ShowIMESettings() OVERRIDE; |
| 84 virtual void ShowHelp() OVERRIDE; | 85 virtual void ShowHelp() OVERRIDE; |
| 85 virtual void ShowAccessibilityHelp() OVERRIDE; | 86 virtual void ShowAccessibilityHelp() OVERRIDE; |
| 86 virtual void ShowAccessibilitySettings() OVERRIDE; | 87 virtual void ShowAccessibilitySettings() OVERRIDE; |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 base::ScopedPtrHashMap<std::string, ash::tray::UserAccountsDelegate> | 284 base::ScopedPtrHashMap<std::string, ash::tray::UserAccountsDelegate> |
| 284 accounts_delegates_; | 285 accounts_delegates_; |
| 285 | 286 |
| 286 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 287 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
| 287 }; | 288 }; |
| 288 | 289 |
| 289 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 290 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
| 290 | 291 |
| 291 } // namespace chromeos | 292 } // namespace chromeos |
| 292 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 293 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| OLD | NEW |