| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_COMMON_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_COMMON_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_COMMON_H_ | 6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_COMMON_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ash/system/tray/system_tray_delegate.h" | 10 #include "ash/system/tray/system_tray_delegate.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 ash::BluetoothDeviceList* list) override; | 69 ash::BluetoothDeviceList* list) override; |
| 70 virtual void BluetoothStartDiscovering() override; | 70 virtual void BluetoothStartDiscovering() override; |
| 71 virtual void BluetoothStopDiscovering() override; | 71 virtual void BluetoothStopDiscovering() override; |
| 72 virtual void ConnectToBluetoothDevice(const std::string& address) override; | 72 virtual void ConnectToBluetoothDevice(const std::string& address) override; |
| 73 virtual bool IsBluetoothDiscovering() override; | 73 virtual bool IsBluetoothDiscovering() override; |
| 74 virtual void GetCurrentIME(ash::IMEInfo* info) override; | 74 virtual void GetCurrentIME(ash::IMEInfo* info) override; |
| 75 virtual void GetAvailableIMEList(ash::IMEInfoList* list) override; | 75 virtual void GetAvailableIMEList(ash::IMEInfoList* list) override; |
| 76 virtual void GetCurrentIMEProperties(ash::IMEPropertyInfoList* list) override; | 76 virtual void GetCurrentIMEProperties(ash::IMEPropertyInfoList* list) override; |
| 77 virtual void SwitchIME(const std::string& ime_id) override; | 77 virtual void SwitchIME(const std::string& ime_id) override; |
| 78 virtual void ActivateIMEProperty(const std::string& key) override; | 78 virtual void ActivateIMEProperty(const std::string& key) override; |
| 79 virtual void ShowNetworkConfigure(const std::string& network_id) override; | |
| 80 virtual bool EnrollNetwork(const std::string& network_id) override; | |
| 81 virtual void ManageBluetoothDevices() override; | 79 virtual void ManageBluetoothDevices() override; |
| 82 virtual void ToggleBluetooth() override; | 80 virtual void ToggleBluetooth() override; |
| 83 virtual void ShowMobileSimDialog() override; | |
| 84 virtual void ShowMobileSetupDialog(const std::string& service_path) override; | |
| 85 virtual void ShowOtherNetworkDialog(const std::string& type) override; | 81 virtual void ShowOtherNetworkDialog(const std::string& type) override; |
| 86 virtual bool GetBluetoothAvailable() override; | 82 virtual bool GetBluetoothAvailable() override; |
| 87 virtual bool GetBluetoothEnabled() override; | 83 virtual bool GetBluetoothEnabled() override; |
| 88 virtual bool GetBluetoothDiscovering() override; | 84 virtual bool GetBluetoothDiscovering() override; |
| 89 virtual void ChangeProxySettings() override; | 85 virtual void ChangeProxySettings() override; |
| 90 virtual ash::VolumeControlDelegate* GetVolumeControlDelegate() const override; | 86 virtual ash::VolumeControlDelegate* GetVolumeControlDelegate() const override; |
| 91 virtual void SetVolumeControlDelegate( | 87 virtual void SetVolumeControlDelegate( |
| 92 scoped_ptr<ash::VolumeControlDelegate> delegate) override; | 88 scoped_ptr<ash::VolumeControlDelegate> delegate) override; |
| 93 virtual bool GetSessionStartTime( | 89 virtual bool GetSessionStartTime( |
| 94 base::TimeTicks* session_start_time) override; | 90 base::TimeTicks* session_start_time) override; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 114 const content::NotificationSource& source, | 110 const content::NotificationSource& source, |
| 115 const content::NotificationDetails& details) override; | 111 const content::NotificationDetails& details) override; |
| 116 | 112 |
| 117 scoped_ptr<content::NotificationRegistrar> registrar_; | 113 scoped_ptr<content::NotificationRegistrar> registrar_; |
| 118 base::HourClockType clock_type_; | 114 base::HourClockType clock_type_; |
| 119 | 115 |
| 120 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateCommon); | 116 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateCommon); |
| 121 }; | 117 }; |
| 122 | 118 |
| 123 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_COMMON_H_ | 119 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_COMMON_H_ |
| OLD | NEW |