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 CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ | 5 #ifndef CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ |
6 #define CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ | 6 #define CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 24 matching lines...) Expand all Loading... | |
35 typedef ShillClientHelper::StringCallback StringCallback; | 35 typedef ShillClientHelper::StringCallback StringCallback; |
36 typedef ShillClientHelper::BooleanCallback BooleanCallback; | 36 typedef ShillClientHelper::BooleanCallback BooleanCallback; |
37 | 37 |
38 // Interface for setting up devices, services, and technologies for testing. | 38 // Interface for setting up devices, services, and technologies for testing. |
39 // Accessed through GetTestInterface(), only implemented in the Stub Impl. | 39 // Accessed through GetTestInterface(), only implemented in the Stub Impl. |
40 class TestInterface { | 40 class TestInterface { |
41 public: | 41 public: |
42 virtual void AddDevice(const std::string& device_path) = 0; | 42 virtual void AddDevice(const std::string& device_path) = 0; |
43 virtual void RemoveDevice(const std::string& device_path) = 0; | 43 virtual void RemoveDevice(const std::string& device_path) = 0; |
44 virtual void ClearDevices() = 0; | 44 virtual void ClearDevices() = 0; |
45 virtual void AddService(const std::string& service_path, | 45 // Add/Remove/Clear Service should only be called from ShillServiceClient. |
pneubeck (no reviews)
2013/05/07 08:46:39
nit: Group the functions more clearly (newline bef
stevenjb
2013/05/08 01:57:22
Reordered and moved.
| |
46 bool add_to_watch_list) = 0; | 46 virtual void AddManagerService(const std::string& service_path, |
47 virtual void AddServiceAtIndex(const std::string& service_path, | |
48 size_t index, | |
49 bool add_to_watch_list) = 0; | 47 bool add_to_watch_list) = 0; |
50 virtual void RemoveService(const std::string& service_path) = 0; | 48 virtual void MoveServiceToIndex(const std::string& service_path, |
51 virtual void ClearServices() = 0; | 49 size_t index, |
50 bool add_to_watch_list) = 0; | |
51 virtual void RemoveManagerService(const std::string& service_path) = 0; | |
52 virtual void ClearManagerServices() = 0; | |
52 virtual void AddTechnology(const std::string& type, bool enabled) = 0; | 53 virtual void AddTechnology(const std::string& type, bool enabled) = 0; |
53 virtual void RemoveTechnology(const std::string& type) = 0; | 54 virtual void RemoveTechnology(const std::string& type) = 0; |
54 virtual void SetTechnologyInitializing(const std::string& type, | 55 virtual void SetTechnologyInitializing(const std::string& type, |
55 bool initializing) = 0; | 56 bool initializing) = 0; |
56 virtual void AddGeoNetwork(const std::string& technology, | 57 virtual void AddGeoNetwork(const std::string& technology, |
57 const base::DictionaryValue& network) = 0; | 58 const base::DictionaryValue& network) = 0; |
58 | 59 |
59 // Used to reset all properties; does not notify observers. | 60 // Used to reset all properties; does not notify observers. |
60 virtual void ClearProperties() = 0; | 61 virtual void ClearProperties() = 0; |
61 | 62 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
189 // Create() should be used instead. | 190 // Create() should be used instead. |
190 ShillManagerClient(); | 191 ShillManagerClient(); |
191 | 192 |
192 private: | 193 private: |
193 DISALLOW_COPY_AND_ASSIGN(ShillManagerClient); | 194 DISALLOW_COPY_AND_ASSIGN(ShillManagerClient); |
194 }; | 195 }; |
195 | 196 |
196 } // namespace chromeos | 197 } // namespace chromeos |
197 | 198 |
198 #endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ | 199 #endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ |
OLD | NEW |