| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ | 5 #ifndef ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ |
| 6 #define ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ | 6 #define ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "ash/system/tray/system_tray_delegate.h" | 8 #include "ash/system/tray/system_tray_delegate.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 virtual void Shutdown() OVERRIDE; | 25 virtual void Shutdown() OVERRIDE; |
| 26 virtual bool GetTrayVisibilityOnStartup() OVERRIDE; | 26 virtual bool GetTrayVisibilityOnStartup() OVERRIDE; |
| 27 | 27 |
| 28 // Overridden from SystemTrayDelegate: | 28 // Overridden from SystemTrayDelegate: |
| 29 virtual user::LoginStatus GetUserLoginStatus() const OVERRIDE; | 29 virtual user::LoginStatus GetUserLoginStatus() const OVERRIDE; |
| 30 virtual bool IsOobeCompleted() const OVERRIDE; | 30 virtual bool IsOobeCompleted() const OVERRIDE; |
| 31 virtual void ChangeProfilePicture() OVERRIDE; | 31 virtual void ChangeProfilePicture() OVERRIDE; |
| 32 virtual const std::string GetEnterpriseDomain() const OVERRIDE; | 32 virtual const std::string GetEnterpriseDomain() const OVERRIDE; |
| 33 virtual const base::string16 GetEnterpriseMessage() const OVERRIDE; | 33 virtual const base::string16 GetEnterpriseMessage() const OVERRIDE; |
| 34 virtual const std::string GetLocallyManagedUserManager() const OVERRIDE; | 34 virtual const std::string GetLocallyManagedUserManager() const OVERRIDE; |
| 35 virtual const base::string16 GetLocallyManagedUserManagerName() const |
| 36 OVERRIDE; |
| 35 virtual const base::string16 GetLocallyManagedUserMessage() const OVERRIDE; | 37 virtual const base::string16 GetLocallyManagedUserMessage() const OVERRIDE; |
| 36 virtual bool SystemShouldUpgrade() const OVERRIDE; | 38 virtual bool SystemShouldUpgrade() const OVERRIDE; |
| 37 virtual base::HourClockType GetHourClockType() const OVERRIDE; | 39 virtual base::HourClockType GetHourClockType() const OVERRIDE; |
| 38 virtual void ShowSettings() OVERRIDE; | 40 virtual void ShowSettings() OVERRIDE; |
| 39 virtual void ShowDateSettings() OVERRIDE; | 41 virtual void ShowDateSettings() OVERRIDE; |
| 40 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE; | 42 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE; |
| 41 virtual void ShowBluetoothSettings() OVERRIDE; | 43 virtual void ShowBluetoothSettings() OVERRIDE; |
| 42 virtual void ShowDisplaySettings() OVERRIDE; | 44 virtual void ShowDisplaySettings() OVERRIDE; |
| 43 virtual void ShowDriveSettings() OVERRIDE; | 45 virtual void ShowDriveSettings() OVERRIDE; |
| 44 virtual void ShowIMESettings() OVERRIDE; | 46 virtual void ShowIMESettings() OVERRIDE; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 bool caps_lock_enabled_; | 100 bool caps_lock_enabled_; |
| 99 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; | 101 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; |
| 100 | 102 |
| 101 DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate); | 103 DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate); |
| 102 }; | 104 }; |
| 103 | 105 |
| 104 } // namespace test | 106 } // namespace test |
| 105 } // namespace ash | 107 } // namespace ash |
| 106 | 108 |
| 107 #endif // ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ | 109 #endif // ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ |
| OLD | NEW |