| 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_STUB_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_STUB_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_STUB_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_STUB_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/chromeos/cros/network_library_impl_base.h" | 8 #include "chrome/browser/chromeos/cros/network_library_impl_base.h" |
| 9 | 9 |
| 10 namespace chromeos { | 10 namespace chromeos { |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 virtual void RequestCellularScan() OVERRIDE; | 61 virtual void RequestCellularScan() OVERRIDE; |
| 62 virtual void RequestCellularRegister( | 62 virtual void RequestCellularRegister( |
| 63 const std::string& network_id) OVERRIDE; | 63 const std::string& network_id) OVERRIDE; |
| 64 virtual void SetCellularDataRoamingAllowed(bool new_value) OVERRIDE; | 64 virtual void SetCellularDataRoamingAllowed(bool new_value) OVERRIDE; |
| 65 virtual void SetCarrier(const std::string& carrier, | 65 virtual void SetCarrier(const std::string& carrier, |
| 66 const NetworkOperationCallback& completed) OVERRIDE; | 66 const NetworkOperationCallback& completed) OVERRIDE; |
| 67 virtual bool IsCellularAlwaysInRoaming() OVERRIDE; | 67 virtual bool IsCellularAlwaysInRoaming() OVERRIDE; |
| 68 virtual void RequestNetworkScan() OVERRIDE; | 68 virtual void RequestNetworkScan() OVERRIDE; |
| 69 | 69 |
| 70 virtual bool GetWifiAccessPoints(WifiAccessPointVector* result) OVERRIDE; | |
| 71 | |
| 72 virtual void RefreshIPConfig(Network* network) OVERRIDE; | 70 virtual void RefreshIPConfig(Network* network) OVERRIDE; |
| 73 | 71 |
| 74 virtual void DisconnectFromNetwork(const Network* network) OVERRIDE; | 72 virtual void DisconnectFromNetwork(const Network* network) OVERRIDE; |
| 75 | 73 |
| 76 virtual void EnableOfflineMode(bool enable) OVERRIDE; | 74 virtual void EnableOfflineMode(bool enable) OVERRIDE; |
| 77 | 75 |
| 78 virtual void GetIPConfigs( | 76 virtual void GetIPConfigs( |
| 79 const std::string& device_path, | 77 const std::string& device_path, |
| 80 HardwareAddressFormat format, | 78 HardwareAddressFormat format, |
| 81 const NetworkGetIPConfigsCallback& callback) OVERRIDE; | 79 const NetworkGetIPConfigsCallback& callback) OVERRIDE; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 WifiNetworkVector disabled_wifi_networks_; | 111 WifiNetworkVector disabled_wifi_networks_; |
| 114 CellularNetworkVector disabled_cellular_networks_; | 112 CellularNetworkVector disabled_cellular_networks_; |
| 115 WimaxNetworkVector disabled_wimax_networks_; | 113 WimaxNetworkVector disabled_wimax_networks_; |
| 116 | 114 |
| 117 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplStub); | 115 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplStub); |
| 118 }; | 116 }; |
| 119 | 117 |
| 120 } // namespace chromeos | 118 } // namespace chromeos |
| 121 | 119 |
| 122 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_STUB_H_ | 120 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_STUB_H_ |
| OLD | NEW |