| 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 24 matching lines...) Expand all Loading... |
| 35 virtual const base::string16 GetLocallyManagedUserManagerName() const | 35 virtual const base::string16 GetLocallyManagedUserManagerName() const |
| 36 OVERRIDE; | 36 OVERRIDE; |
| 37 virtual const base::string16 GetLocallyManagedUserMessage() const OVERRIDE; | 37 virtual const base::string16 GetLocallyManagedUserMessage() const OVERRIDE; |
| 38 virtual bool SystemShouldUpgrade() const OVERRIDE; | 38 virtual bool SystemShouldUpgrade() const OVERRIDE; |
| 39 virtual base::HourClockType GetHourClockType() const OVERRIDE; | 39 virtual base::HourClockType GetHourClockType() const OVERRIDE; |
| 40 virtual void ShowSettings() OVERRIDE; | 40 virtual void ShowSettings() OVERRIDE; |
| 41 virtual void ShowDateSettings() OVERRIDE; | 41 virtual void ShowDateSettings() OVERRIDE; |
| 42 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE; | 42 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE; |
| 43 virtual void ShowBluetoothSettings() OVERRIDE; | 43 virtual void ShowBluetoothSettings() OVERRIDE; |
| 44 virtual void ShowDisplaySettings() OVERRIDE; | 44 virtual void ShowDisplaySettings() OVERRIDE; |
| 45 virtual void ShowSlow() OVERRIDE; |
| 45 virtual bool ShouldShowDisplayNotification() OVERRIDE; | 46 virtual bool ShouldShowDisplayNotification() OVERRIDE; |
| 46 virtual void ShowDriveSettings() OVERRIDE; | 47 virtual void ShowDriveSettings() OVERRIDE; |
| 47 virtual void ShowIMESettings() OVERRIDE; | 48 virtual void ShowIMESettings() OVERRIDE; |
| 48 virtual void ShowHelp() OVERRIDE; | 49 virtual void ShowHelp() OVERRIDE; |
| 49 virtual void ShowAccessibilityHelp() OVERRIDE; | 50 virtual void ShowAccessibilityHelp() OVERRIDE; |
| 50 virtual void ShowAccessibilitySettings() OVERRIDE; | 51 virtual void ShowAccessibilitySettings() OVERRIDE; |
| 51 virtual void ShowPublicAccountInfo() OVERRIDE; | 52 virtual void ShowPublicAccountInfo() OVERRIDE; |
| 52 virtual void ShowEnterpriseInfo() OVERRIDE; | 53 virtual void ShowEnterpriseInfo() OVERRIDE; |
| 53 virtual void ShowLocallyManagedUserInfo() OVERRIDE; | 54 virtual void ShowLocallyManagedUserInfo() OVERRIDE; |
| 54 virtual void ShowUserLogin() OVERRIDE; | 55 virtual void ShowUserLogin() OVERRIDE; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 bool should_show_display_notification_; | 107 bool should_show_display_notification_; |
| 107 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; | 108 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; |
| 108 | 109 |
| 109 DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate); | 110 DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate); |
| 110 }; | 111 }; |
| 111 | 112 |
| 112 } // namespace test | 113 } // namespace test |
| 113 } // namespace ash | 114 } // namespace ash |
| 114 | 115 |
| 115 #endif // ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ | 116 #endif // ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ |
| OLD | NEW |