| 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 29 matching lines...) Expand all Loading... |
| 40 const std::string& profile_path, | 40 const std::string& profile_path, |
| 41 const std::string& service_path) OVERRIDE; | 41 const std::string& service_path) OVERRIDE; |
| 42 | 42 |
| 43 virtual void CallEnableNetworkDeviceType( | 43 virtual void CallEnableNetworkDeviceType( |
| 44 ConnectionType device, bool enable) OVERRIDE; | 44 ConnectionType device, bool enable) OVERRIDE; |
| 45 | 45 |
| 46 virtual void CallRemoveNetwork(const Network* network) OVERRIDE; | 46 virtual void CallRemoveNetwork(const Network* network) OVERRIDE; |
| 47 | 47 |
| 48 // NetworkLibrary implementation. | 48 // NetworkLibrary implementation. |
| 49 | 49 |
| 50 virtual void SetCheckPortalList( | |
| 51 const std::string& check_portal_list) OVERRIDE; | |
| 52 virtual void SetDefaultCheckPortalList() OVERRIDE; | |
| 53 virtual void ChangePin(const std::string& old_pin, | 50 virtual void ChangePin(const std::string& old_pin, |
| 54 const std::string& new_pin) OVERRIDE; | 51 const std::string& new_pin) OVERRIDE; |
| 55 virtual void ChangeRequirePin(bool require_pin, | 52 virtual void ChangeRequirePin(bool require_pin, |
| 56 const std::string& pin) OVERRIDE; | 53 const std::string& pin) OVERRIDE; |
| 57 virtual void EnterPin(const std::string& pin) OVERRIDE; | 54 virtual void EnterPin(const std::string& pin) OVERRIDE; |
| 58 virtual void UnblockPin(const std::string& puk, | 55 virtual void UnblockPin(const std::string& puk, |
| 59 const std::string& new_pin) OVERRIDE; | 56 const std::string& new_pin) OVERRIDE; |
| 60 | 57 |
| 61 virtual void RequestCellularScan() OVERRIDE; | 58 virtual void RequestCellularScan() OVERRIDE; |
| 62 virtual void RequestCellularRegister( | 59 virtual void RequestCellularRegister( |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 WimaxNetworkVector disabled_wimax_networks_; | 118 WimaxNetworkVector disabled_wimax_networks_; |
| 122 std::map<std::string, base::DictionaryValue*> service_configurations_; | 119 std::map<std::string, base::DictionaryValue*> service_configurations_; |
| 123 base::WeakPtrFactory<NetworkLibraryImplStub> weak_pointer_factory_; | 120 base::WeakPtrFactory<NetworkLibraryImplStub> weak_pointer_factory_; |
| 124 | 121 |
| 125 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplStub); | 122 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplStub); |
| 126 }; | 123 }; |
| 127 | 124 |
| 128 } // namespace chromeos | 125 } // namespace chromeos |
| 129 | 126 |
| 130 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_STUB_H_ | 127 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_STUB_H_ |
| OLD | NEW |