| 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 CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ |
| 7 | 7 |
| 8 #include "base/time.h" | 8 #include "base/time.h" |
| 9 #include "chrome/browser/chromeos/cros/network_library_impl_base.h" | 9 #include "chrome/browser/chromeos/cros/network_library_impl_base.h" |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 virtual void EnterPin(const std::string& pin) OVERRIDE; | 56 virtual void EnterPin(const std::string& pin) OVERRIDE; |
| 57 virtual void UnblockPin(const std::string& puk, | 57 virtual void UnblockPin(const std::string& puk, |
| 58 const std::string& new_pin) OVERRIDE; | 58 const std::string& new_pin) OVERRIDE; |
| 59 virtual void RequestCellularScan() OVERRIDE; | 59 virtual void RequestCellularScan() OVERRIDE; |
| 60 virtual void RequestCellularRegister(const std::string& network_id) OVERRIDE; | 60 virtual void RequestCellularRegister(const std::string& network_id) OVERRIDE; |
| 61 virtual void SetCellularDataRoamingAllowed(bool new_value) OVERRIDE; | 61 virtual void SetCellularDataRoamingAllowed(bool new_value) OVERRIDE; |
| 62 virtual void SetCarrier(const std::string& carrier, | 62 virtual void SetCarrier(const std::string& carrier, |
| 63 const NetworkOperationCallback& completed) OVERRIDE; | 63 const NetworkOperationCallback& completed) OVERRIDE; |
| 64 virtual bool IsCellularAlwaysInRoaming() OVERRIDE; | 64 virtual bool IsCellularAlwaysInRoaming() OVERRIDE; |
| 65 virtual void RequestNetworkScan() OVERRIDE; | 65 virtual void RequestNetworkScan() OVERRIDE; |
| 66 virtual bool GetWifiAccessPoints(WifiAccessPointVector* result) OVERRIDE; | |
| 67 | 66 |
| 68 virtual void RefreshIPConfig(Network* network) OVERRIDE; | 67 virtual void RefreshIPConfig(Network* network) OVERRIDE; |
| 69 | 68 |
| 70 virtual void DisconnectFromNetwork(const Network* network) OVERRIDE; | 69 virtual void DisconnectFromNetwork(const Network* network) OVERRIDE; |
| 71 virtual void CallEnableNetworkDeviceType( | 70 virtual void CallEnableNetworkDeviceType( |
| 72 ConnectionType device, bool enable) OVERRIDE; | 71 ConnectionType device, bool enable) OVERRIDE; |
| 73 virtual void CallRemoveNetwork(const Network* network) OVERRIDE; | 72 virtual void CallRemoveNetwork(const Network* network) OVERRIDE; |
| 74 | 73 |
| 75 virtual void EnableOfflineMode(bool enable) OVERRIDE; | 74 virtual void EnableOfflineMode(bool enable) OVERRIDE; |
| 76 | 75 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 NetworkWatcherMap monitored_devices_; | 211 NetworkWatcherMap monitored_devices_; |
| 213 | 212 |
| 214 base::Time wifi_scan_request_time_; | 213 base::Time wifi_scan_request_time_; |
| 215 | 214 |
| 216 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplCros); | 215 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplCros); |
| 217 }; | 216 }; |
| 218 | 217 |
| 219 } // namespace chromeos | 218 } // namespace chromeos |
| 220 | 219 |
| 221 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ | 220 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ |
| OLD | NEW |