| 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 28 matching lines...) Expand all Loading... |
| 39 const std::string& service_name, | 39 const std::string& service_name, |
| 40 const std::string& server_hostname, | 40 const std::string& server_hostname, |
| 41 ProviderType provider_type) OVERRIDE; | 41 ProviderType provider_type) OVERRIDE; |
| 42 virtual void CallDeleteRememberedNetwork( | 42 virtual void CallDeleteRememberedNetwork( |
| 43 const std::string& profile_path, | 43 const std::string& profile_path, |
| 44 const std::string& service_path) OVERRIDE; | 44 const std::string& service_path) OVERRIDE; |
| 45 | 45 |
| 46 ////////////////////////////////////////////////////////////////////////////// | 46 ////////////////////////////////////////////////////////////////////////////// |
| 47 // NetworkLibrary implementation. | 47 // NetworkLibrary implementation. |
| 48 | 48 |
| 49 virtual void SetCheckPortalList( | |
| 50 const std::string& check_portal_list) OVERRIDE; | |
| 51 virtual void SetDefaultCheckPortalList() OVERRIDE; | |
| 52 virtual void ChangePin(const std::string& old_pin, | 49 virtual void ChangePin(const std::string& old_pin, |
| 53 const std::string& new_pin) OVERRIDE; | 50 const std::string& new_pin) OVERRIDE; |
| 54 virtual void ChangeRequirePin(bool require_pin, | 51 virtual void ChangeRequirePin(bool require_pin, |
| 55 const std::string& pin) OVERRIDE; | 52 const std::string& pin) OVERRIDE; |
| 56 virtual void EnterPin(const std::string& pin) OVERRIDE; | 53 virtual void EnterPin(const std::string& pin) OVERRIDE; |
| 57 virtual void UnblockPin(const std::string& puk, | 54 virtual void UnblockPin(const std::string& puk, |
| 58 const std::string& new_pin) OVERRIDE; | 55 const std::string& new_pin) OVERRIDE; |
| 59 virtual void RequestCellularScan() OVERRIDE; | 56 virtual void RequestCellularScan() OVERRIDE; |
| 60 virtual void RequestCellularRegister(const std::string& network_id) OVERRIDE; | 57 virtual void RequestCellularRegister(const std::string& network_id) OVERRIDE; |
| 61 virtual void SetCellularDataRoamingAllowed(bool new_value) OVERRIDE; | 58 virtual void SetCellularDataRoamingAllowed(bool new_value) OVERRIDE; |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 | 206 |
| 210 // Map of monitored devices. | 207 // Map of monitored devices. |
| 211 NetworkWatcherMap monitored_devices_; | 208 NetworkWatcherMap monitored_devices_; |
| 212 | 209 |
| 213 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplCros); | 210 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplCros); |
| 214 }; | 211 }; |
| 215 | 212 |
| 216 } // namespace chromeos | 213 } // namespace chromeos |
| 217 | 214 |
| 218 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ | 215 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ |
| OLD | NEW |