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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 virtual void GetDriveOperationStatusList( | 71 virtual void GetDriveOperationStatusList( |
72 ash::DriveOperationStatusList*) OVERRIDE; | 72 ash::DriveOperationStatusList*) OVERRIDE; |
73 virtual void ConfigureNetwork(const std::string& network_id) OVERRIDE; | 73 virtual void ConfigureNetwork(const std::string& network_id) OVERRIDE; |
74 virtual void EnrollOrConfigureNetwork( | 74 virtual void EnrollOrConfigureNetwork( |
75 const std::string& network_id, | 75 const std::string& network_id, |
76 gfx::NativeWindow parent_window) OVERRIDE; | 76 gfx::NativeWindow parent_window) OVERRIDE; |
77 virtual void ManageBluetoothDevices() OVERRIDE; | 77 virtual void ManageBluetoothDevices() OVERRIDE; |
78 virtual void ToggleBluetooth() OVERRIDE; | 78 virtual void ToggleBluetooth() OVERRIDE; |
79 virtual bool IsBluetoothDiscovering() OVERRIDE; | 79 virtual bool IsBluetoothDiscovering() OVERRIDE; |
80 virtual void ShowMobileSimDialog() OVERRIDE; | 80 virtual void ShowMobileSimDialog() OVERRIDE; |
81 virtual void ShowMobileSetup(const std::string& network_id) OVERRIDE; | 81 virtual void ShowMobileSetupDialog(const std::string& service_path) OVERRIDE; |
82 virtual void ShowOtherWifi() OVERRIDE; | 82 virtual void ShowOtherWifi() OVERRIDE; |
83 virtual void ShowOtherVPN() OVERRIDE; | 83 virtual void ShowOtherVPN() OVERRIDE; |
84 virtual void ShowOtherCellular() OVERRIDE; | 84 virtual void ShowOtherCellular() OVERRIDE; |
85 virtual bool GetBluetoothAvailable() OVERRIDE; | 85 virtual bool GetBluetoothAvailable() OVERRIDE; |
86 virtual bool GetBluetoothEnabled() OVERRIDE; | 86 virtual bool GetBluetoothEnabled() OVERRIDE; |
87 virtual void ChangeProxySettings() OVERRIDE; | 87 virtual void ChangeProxySettings() OVERRIDE; |
88 virtual VolumeControlDelegate* GetVolumeControlDelegate() const OVERRIDE; | 88 virtual VolumeControlDelegate* GetVolumeControlDelegate() const OVERRIDE; |
89 virtual void SetVolumeControlDelegate( | 89 virtual void SetVolumeControlDelegate( |
90 scoped_ptr<VolumeControlDelegate> delegate) OVERRIDE; | 90 scoped_ptr<VolumeControlDelegate> delegate) OVERRIDE; |
91 virtual bool GetSessionStartTime( | 91 virtual bool GetSessionStartTime( |
(...skipping 13 matching lines...) Expand all Loading... |
105 bool should_show_display_notification_; | 105 bool should_show_display_notification_; |
106 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; | 106 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; |
107 | 107 |
108 DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate); | 108 DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate); |
109 }; | 109 }; |
110 | 110 |
111 } // namespace test | 111 } // namespace test |
112 } // namespace ash | 112 } // namespace ash |
113 | 113 |
114 #endif // ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ | 114 #endif // ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ |
OLD | NEW |