| 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 ASH_SYSTEM_TRAY_DEFAULT_SYSTEM_TRAY_DELEGATE_H_ | 5 #ifndef ASH_SYSTEM_TRAY_DEFAULT_SYSTEM_TRAY_DELEGATE_H_ |
| 6 #define ASH_SYSTEM_TRAY_DEFAULT_SYSTEM_TRAY_DELEGATE_H_ | 6 #define ASH_SYSTEM_TRAY_DEFAULT_SYSTEM_TRAY_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/system/tray/system_tray_delegate.h" | 9 #include "ash/system/tray/system_tray_delegate.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 virtual const base::string16 GetEnterpriseMessage() const OVERRIDE; | 27 virtual const base::string16 GetEnterpriseMessage() const OVERRIDE; |
| 28 virtual const std::string GetLocallyManagedUserManager() const OVERRIDE; | 28 virtual const std::string GetLocallyManagedUserManager() const OVERRIDE; |
| 29 virtual const base::string16 GetLocallyManagedUserManagerName() const | 29 virtual const base::string16 GetLocallyManagedUserManagerName() const |
| 30 OVERRIDE; | 30 OVERRIDE; |
| 31 virtual const base::string16 GetLocallyManagedUserMessage() const OVERRIDE; | 31 virtual const base::string16 GetLocallyManagedUserMessage() const OVERRIDE; |
| 32 virtual bool SystemShouldUpgrade() const OVERRIDE; | 32 virtual bool SystemShouldUpgrade() const OVERRIDE; |
| 33 virtual base::HourClockType GetHourClockType() const OVERRIDE; | 33 virtual base::HourClockType GetHourClockType() const OVERRIDE; |
| 34 virtual void ShowSettings() OVERRIDE; | 34 virtual void ShowSettings() OVERRIDE; |
| 35 virtual bool ShouldShowSettings() OVERRIDE; | 35 virtual bool ShouldShowSettings() OVERRIDE; |
| 36 virtual void ShowDateSettings() OVERRIDE; | 36 virtual void ShowDateSettings() OVERRIDE; |
| 37 virtual void ShowSetTimeDialog() OVERRIDE; |
| 37 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE; | 38 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE; |
| 38 virtual void ShowBluetoothSettings() OVERRIDE; | 39 virtual void ShowBluetoothSettings() OVERRIDE; |
| 39 virtual void ShowDisplaySettings() OVERRIDE; | 40 virtual void ShowDisplaySettings() OVERRIDE; |
| 40 virtual void ShowChromeSlow() OVERRIDE; | 41 virtual void ShowChromeSlow() OVERRIDE; |
| 41 virtual bool ShouldShowDisplayNotification() OVERRIDE; | 42 virtual bool ShouldShowDisplayNotification() OVERRIDE; |
| 42 virtual void ShowDriveSettings() OVERRIDE; | 43 virtual void ShowDriveSettings() OVERRIDE; |
| 43 virtual void ShowIMESettings() OVERRIDE; | 44 virtual void ShowIMESettings() OVERRIDE; |
| 44 virtual void ShowHelp() OVERRIDE; | 45 virtual void ShowHelp() OVERRIDE; |
| 45 virtual void ShowAccessibilityHelp() OVERRIDE; | 46 virtual void ShowAccessibilityHelp() OVERRIDE; |
| 46 virtual void ShowAccessibilitySettings() OVERRIDE; | 47 virtual void ShowAccessibilitySettings() OVERRIDE; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 private: | 100 private: |
| 100 bool bluetooth_enabled_; | 101 bool bluetooth_enabled_; |
| 101 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; | 102 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; |
| 102 | 103 |
| 103 DISALLOW_COPY_AND_ASSIGN(DefaultSystemTrayDelegate); | 104 DISALLOW_COPY_AND_ASSIGN(DefaultSystemTrayDelegate); |
| 104 }; | 105 }; |
| 105 | 106 |
| 106 } // namespace ash | 107 } // namespace ash |
| 107 | 108 |
| 108 #endif // ASH_SYSTEM_TRAY_DEFAULT_SYSTEM_TRAY_DELEGATE_H_ | 109 #endif // ASH_SYSTEM_TRAY_DEFAULT_SYSTEM_TRAY_DELEGATE_H_ |
| OLD | NEW |