| 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_BASE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 virtual bool cellular_enabled() const OVERRIDE; | 141 virtual bool cellular_enabled() const OVERRIDE; |
| 142 virtual bool mobile_enabled() const OVERRIDE; | 142 virtual bool mobile_enabled() const OVERRIDE; |
| 143 virtual bool ethernet_busy() const OVERRIDE; | 143 virtual bool ethernet_busy() const OVERRIDE; |
| 144 virtual bool wifi_busy() const OVERRIDE; | 144 virtual bool wifi_busy() const OVERRIDE; |
| 145 virtual bool wimax_busy() const OVERRIDE; | 145 virtual bool wimax_busy() const OVERRIDE; |
| 146 virtual bool cellular_busy() const OVERRIDE; | 146 virtual bool cellular_busy() const OVERRIDE; |
| 147 virtual bool mobile_busy() const OVERRIDE; | 147 virtual bool mobile_busy() const OVERRIDE; |
| 148 virtual bool wifi_scanning() const OVERRIDE; | 148 virtual bool wifi_scanning() const OVERRIDE; |
| 149 virtual bool cellular_initializing() const OVERRIDE; | 149 virtual bool cellular_initializing() const OVERRIDE; |
| 150 virtual bool offline_mode() const OVERRIDE; | 150 virtual bool offline_mode() const OVERRIDE; |
| 151 virtual std::string GetCheckPortalList() const OVERRIDE; | |
| 152 // virtual SetCheckPortalList implemented in derived classes. | |
| 153 // virtual SetDefaultCheckPortalList implemented in derived classes. | |
| 154 virtual const std::string& IPAddress() const OVERRIDE; | 151 virtual const std::string& IPAddress() const OVERRIDE; |
| 155 | 152 |
| 156 virtual const NetworkDevice* FindNetworkDeviceByPath( | 153 virtual const NetworkDevice* FindNetworkDeviceByPath( |
| 157 const std::string& path) const OVERRIDE; | 154 const std::string& path) const OVERRIDE; |
| 158 NetworkDevice* FindNetworkDeviceByPath(const std::string& path); | 155 NetworkDevice* FindNetworkDeviceByPath(const std::string& path); |
| 159 virtual const NetworkDevice* FindMobileDevice() const OVERRIDE; | 156 virtual const NetworkDevice* FindMobileDevice() const OVERRIDE; |
| 160 virtual const NetworkDevice* FindWimaxDevice() const OVERRIDE; | 157 virtual const NetworkDevice* FindWimaxDevice() const OVERRIDE; |
| 161 virtual const NetworkDevice* FindCellularDevice() const OVERRIDE; | 158 virtual const NetworkDevice* FindCellularDevice() const OVERRIDE; |
| 162 virtual const NetworkDevice* FindEthernetDevice() const OVERRIDE; | 159 virtual const NetworkDevice* FindEthernetDevice() const OVERRIDE; |
| 163 virtual const NetworkDevice* FindWifiDevice() const OVERRIDE; | 160 virtual const NetworkDevice* FindWifiDevice() const OVERRIDE; |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 // stray networks that shill still has on file, but are not known on the | 484 // stray networks that shill still has on file, but are not known on the |
| 488 // Chrome side. | 485 // Chrome side. |
| 489 NetworkSourceMap network_source_map_; | 486 NetworkSourceMap network_source_map_; |
| 490 | 487 |
| 491 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplBase); | 488 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplBase); |
| 492 }; | 489 }; |
| 493 | 490 |
| 494 } // namespace chromeos | 491 } // namespace chromeos |
| 495 | 492 |
| 496 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ | 493 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ |
| OLD | NEW |