| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 CellularNetworkVector disabled_cellular_networks_; | 117 CellularNetworkVector disabled_cellular_networks_; |
| 120 WimaxNetworkVector disabled_wimax_networks_; | 118 WimaxNetworkVector disabled_wimax_networks_; |
| 121 std::map<std::string, base::DictionaryValue*> service_configurations_; | 119 std::map<std::string, base::DictionaryValue*> service_configurations_; |
| 122 | 120 |
| 123 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplStub); | 121 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplStub); |
| 124 }; | 122 }; |
| 125 | 123 |
| 126 } // namespace chromeos | 124 } // namespace chromeos |
| 127 | 125 |
| 128 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_STUB_H_ | 126 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_STUB_H_ |
| OLD | NEW |