OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CHROMEOS_DBUS_SHILL_SERVICE_CLIENT_STUB_H_ | 5 #ifndef CHROMEOS_DBUS_SHILL_SERVICE_CLIENT_STUB_H_ |
6 #define CHROMEOS_DBUS_SHILL_SERVICE_CLIENT_STUB_H_ | 6 #define CHROMEOS_DBUS_SHILL_SERVICE_CLIENT_STUB_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 virtual bool CallActivateCellularModemAndBlock( | 65 virtual bool CallActivateCellularModemAndBlock( |
66 const dbus::ObjectPath& service_path, | 66 const dbus::ObjectPath& service_path, |
67 const std::string& carrier) OVERRIDE; | 67 const std::string& carrier) OVERRIDE; |
68 virtual ShillServiceClient::TestInterface* GetTestInterface() OVERRIDE; | 68 virtual ShillServiceClient::TestInterface* GetTestInterface() OVERRIDE; |
69 | 69 |
70 // ShillServiceClient::TestInterface overrides. | 70 // ShillServiceClient::TestInterface overrides. |
71 virtual void AddService(const std::string& service_path, | 71 virtual void AddService(const std::string& service_path, |
72 const std::string& name, | 72 const std::string& name, |
73 const std::string& type, | 73 const std::string& type, |
74 const std::string& state, | 74 const std::string& state, |
| 75 const std::string& ipconfig_path, |
75 bool add_to_watch_list) OVERRIDE; | 76 bool add_to_watch_list) OVERRIDE; |
76 virtual void RemoveService(const std::string& service_path) OVERRIDE; | 77 virtual void RemoveService(const std::string& service_path) OVERRIDE; |
77 virtual void SetServiceProperty(const std::string& service_path, | 78 virtual void SetServiceProperty(const std::string& service_path, |
78 const std::string& property, | 79 const std::string& property, |
79 const base::Value& value) OVERRIDE; | 80 const base::Value& value) OVERRIDE; |
80 virtual const base::DictionaryValue* GetServiceProperties( | 81 virtual const base::DictionaryValue* GetServiceProperties( |
81 const std::string& service_path) const OVERRIDE; | 82 const std::string& service_path) const OVERRIDE; |
82 virtual void ClearServices() OVERRIDE; | 83 virtual void ClearServices() OVERRIDE; |
83 | 84 |
84 private: | 85 private: |
(...skipping 15 matching lines...) Expand all Loading... |
100 // Note: This should remain the last member so it'll be destroyed and | 101 // Note: This should remain the last member so it'll be destroyed and |
101 // invalidate its weak pointers before any other members are destroyed. | 102 // invalidate its weak pointers before any other members are destroyed. |
102 base::WeakPtrFactory<ShillServiceClientStub> weak_ptr_factory_; | 103 base::WeakPtrFactory<ShillServiceClientStub> weak_ptr_factory_; |
103 | 104 |
104 DISALLOW_COPY_AND_ASSIGN(ShillServiceClientStub); | 105 DISALLOW_COPY_AND_ASSIGN(ShillServiceClientStub); |
105 }; | 106 }; |
106 | 107 |
107 } // namespace chromeos | 108 } // namespace chromeos |
108 | 109 |
109 #endif // CHROMEOS_DBUS_SHILL_SERVICE_CLIENT_STUB_H_ | 110 #endif // CHROMEOS_DBUS_SHILL_SERVICE_CLIENT_STUB_H_ |
OLD | NEW |