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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 virtual void ShowIMESettings() OVERRIDE; | 44 virtual void ShowIMESettings() OVERRIDE; |
45 virtual void ShowHelp() OVERRIDE; | 45 virtual void ShowHelp() OVERRIDE; |
46 virtual void ShowAccessibilityHelp() OVERRIDE; | 46 virtual void ShowAccessibilityHelp() OVERRIDE; |
47 virtual void ShowPublicAccountInfo() OVERRIDE; | 47 virtual void ShowPublicAccountInfo() OVERRIDE; |
48 virtual void ShowEnterpriseInfo() OVERRIDE; | 48 virtual void ShowEnterpriseInfo() OVERRIDE; |
49 virtual void ShutDown() OVERRIDE; | 49 virtual void ShutDown() OVERRIDE; |
50 virtual void SignOut() OVERRIDE; | 50 virtual void SignOut() OVERRIDE; |
51 virtual void RequestLockScreen() OVERRIDE; | 51 virtual void RequestLockScreen() OVERRIDE; |
52 virtual void RequestRestart() OVERRIDE; | 52 virtual void RequestRestart() OVERRIDE; |
53 virtual void GetAvailableBluetoothDevices(BluetoothDeviceList* list) OVERRIDE; | 53 virtual void GetAvailableBluetoothDevices(BluetoothDeviceList* list) OVERRIDE; |
| 54 virtual void BluetoothSetDiscovering(bool value) OVERRIDE; |
54 virtual void ToggleBluetoothConnection(const std::string& address) OVERRIDE; | 55 virtual void ToggleBluetoothConnection(const std::string& address) OVERRIDE; |
55 virtual void GetCurrentIME(IMEInfo* info) OVERRIDE; | 56 virtual void GetCurrentIME(IMEInfo* info) OVERRIDE; |
56 virtual void GetAvailableIMEList(IMEInfoList* list) OVERRIDE; | 57 virtual void GetAvailableIMEList(IMEInfoList* list) OVERRIDE; |
57 virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) OVERRIDE; | 58 virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) OVERRIDE; |
58 virtual void SwitchIME(const std::string& ime_id) OVERRIDE; | 59 virtual void SwitchIME(const std::string& ime_id) OVERRIDE; |
59 virtual void ActivateIMEProperty(const std::string& key) OVERRIDE; | 60 virtual void ActivateIMEProperty(const std::string& key) OVERRIDE; |
60 virtual void CancelDriveOperation(const FilePath&) OVERRIDE; | 61 virtual void CancelDriveOperation(const FilePath&) OVERRIDE; |
61 virtual void GetDriveOperationStatusList( | 62 virtual void GetDriveOperationStatusList( |
62 ash::DriveOperationStatusList*) OVERRIDE; | 63 ash::DriveOperationStatusList*) OVERRIDE; |
63 virtual void GetMostRelevantNetworkIcon(NetworkIconInfo* info, | 64 virtual void GetMostRelevantNetworkIcon(NetworkIconInfo* info, |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 gfx::ImageSkia null_image_; | 109 gfx::ImageSkia null_image_; |
109 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; | 110 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; |
110 | 111 |
111 DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate); | 112 DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate); |
112 }; | 113 }; |
113 | 114 |
114 } // namespace test | 115 } // namespace test |
115 } // namespace ash | 116 } // namespace ash |
116 | 117 |
117 #endif // ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ | 118 #endif // ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ |
OLD | NEW |