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 bool IsCellularAlwaysInRoaming() OVERRIDE; | 65 virtual bool IsCellularAlwaysInRoaming() OVERRIDE; |
66 virtual void RequestNetworkScan() OVERRIDE; | 66 virtual void RequestNetworkScan() OVERRIDE; |
67 | 67 |
68 virtual bool GetWifiAccessPoints(WifiAccessPointVector* result) OVERRIDE; | 68 virtual bool GetWifiAccessPoints(WifiAccessPointVector* result) OVERRIDE; |
69 | 69 |
| 70 virtual void RefreshIPConfig(Network* network) OVERRIDE; |
| 71 |
70 virtual void DisconnectFromNetwork(const Network* network) OVERRIDE; | 72 virtual void DisconnectFromNetwork(const Network* network) OVERRIDE; |
71 | 73 |
72 virtual void EnableOfflineMode(bool enable) OVERRIDE; | 74 virtual void EnableOfflineMode(bool enable) OVERRIDE; |
73 | 75 |
74 virtual NetworkIPConfigVector GetIPConfigs( | 76 virtual NetworkIPConfigVector GetIPConfigs( |
75 const std::string& device_path, | 77 const std::string& device_path, |
76 std::string* hardware_address, | 78 std::string* hardware_address, |
77 HardwareAddressFormat format) OVERRIDE; | 79 HardwareAddressFormat format) OVERRIDE; |
78 virtual void SetIPConfig(const NetworkIPConfig& ipconfig) OVERRIDE; | 80 virtual void SetIPConfig(const NetworkIPConfig& ipconfig) OVERRIDE; |
79 | 81 |
(...skipping 13 matching lines...) Expand all Loading... |
93 WifiNetworkVector disabled_wifi_networks_; | 95 WifiNetworkVector disabled_wifi_networks_; |
94 CellularNetworkVector disabled_cellular_networks_; | 96 CellularNetworkVector disabled_cellular_networks_; |
95 WimaxNetworkVector disabled_wimax_networks_; | 97 WimaxNetworkVector disabled_wimax_networks_; |
96 | 98 |
97 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplStub); | 99 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplStub); |
98 }; | 100 }; |
99 | 101 |
100 } // namespace chromeos | 102 } // namespace chromeos |
101 | 103 |
102 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_STUB_H_ | 104 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_STUB_H_ |
OLD | NEW |