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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 virtual void RequestRestartForUpdate() override; | 57 virtual void RequestRestartForUpdate() override; |
58 virtual void GetAvailableBluetoothDevices(BluetoothDeviceList* list) override; | 58 virtual void GetAvailableBluetoothDevices(BluetoothDeviceList* list) override; |
59 virtual void BluetoothStartDiscovering() override; | 59 virtual void BluetoothStartDiscovering() override; |
60 virtual void BluetoothStopDiscovering() override; | 60 virtual void BluetoothStopDiscovering() override; |
61 virtual void ConnectToBluetoothDevice(const std::string& address) override; | 61 virtual void ConnectToBluetoothDevice(const std::string& address) override; |
62 virtual void GetCurrentIME(IMEInfo* info) override; | 62 virtual void GetCurrentIME(IMEInfo* info) override; |
63 virtual void GetAvailableIMEList(IMEInfoList* list) override; | 63 virtual void GetAvailableIMEList(IMEInfoList* list) override; |
64 virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) override; | 64 virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) override; |
65 virtual void SwitchIME(const std::string& ime_id) override; | 65 virtual void SwitchIME(const std::string& ime_id) override; |
66 virtual void ActivateIMEProperty(const std::string& key) override; | 66 virtual void ActivateIMEProperty(const std::string& key) override; |
67 virtual void ShowNetworkConfigure(const std::string& network_id) override; | |
68 virtual bool EnrollNetwork(const std::string& network_id) override; | |
69 virtual void ManageBluetoothDevices() override; | 67 virtual void ManageBluetoothDevices() override; |
70 virtual void ToggleBluetooth() override; | 68 virtual void ToggleBluetooth() override; |
71 virtual bool IsBluetoothDiscovering() override; | 69 virtual bool IsBluetoothDiscovering() override; |
72 virtual void ShowMobileSimDialog() override; | |
73 virtual void ShowMobileSetupDialog(const std::string& service_path) override; | |
74 virtual void ShowOtherNetworkDialog(const std::string& type) override; | 70 virtual void ShowOtherNetworkDialog(const std::string& type) override; |
75 virtual bool GetBluetoothAvailable() override; | 71 virtual bool GetBluetoothAvailable() override; |
76 virtual bool GetBluetoothEnabled() override; | 72 virtual bool GetBluetoothEnabled() override; |
77 virtual bool GetBluetoothDiscovering() override; | 73 virtual bool GetBluetoothDiscovering() override; |
78 virtual void ChangeProxySettings() override; | 74 virtual void ChangeProxySettings() override; |
79 virtual VolumeControlDelegate* GetVolumeControlDelegate() const override; | 75 virtual VolumeControlDelegate* GetVolumeControlDelegate() const override; |
80 virtual void SetVolumeControlDelegate( | 76 virtual void SetVolumeControlDelegate( |
81 scoped_ptr<VolumeControlDelegate> delegate) override; | 77 scoped_ptr<VolumeControlDelegate> delegate) override; |
82 virtual bool GetSessionStartTime( | 78 virtual bool GetSessionStartTime( |
83 base::TimeTicks* session_start_time) override; | 79 base::TimeTicks* session_start_time) override; |
(...skipping 12 matching lines...) Expand all Loading... |
96 private: | 92 private: |
97 bool bluetooth_enabled_; | 93 bool bluetooth_enabled_; |
98 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; | 94 scoped_ptr<VolumeControlDelegate> volume_control_delegate_; |
99 | 95 |
100 DISALLOW_COPY_AND_ASSIGN(DefaultSystemTrayDelegate); | 96 DISALLOW_COPY_AND_ASSIGN(DefaultSystemTrayDelegate); |
101 }; | 97 }; |
102 | 98 |
103 } // namespace ash | 99 } // namespace ash |
104 | 100 |
105 #endif // ASH_SYSTEM_TRAY_DEFAULT_SYSTEM_TRAY_DELEGATE_H_ | 101 #endif // ASH_SYSTEM_TRAY_DEFAULT_SYSTEM_TRAY_DELEGATE_H_ |
OLD | NEW |