| 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, | |
| 46 bool add_to_watch_list) = 0; | |
| 47 virtual void AddServiceAtIndex(const std::string& service_path, | |
| 48 size_t index, | |
| 49 bool add_to_watch_list) = 0; | |
| 50 virtual void RemoveService(const std::string& service_path) = 0; | |
| 51 virtual void ClearServices() = 0; | |
| 52 virtual void AddTechnology(const std::string& type, bool enabled) = 0; | 45 virtual void AddTechnology(const std::string& type, bool enabled) = 0; |
| 53 virtual void RemoveTechnology(const std::string& type) = 0; | 46 virtual void RemoveTechnology(const std::string& type) = 0; |
| 54 virtual void SetTechnologyInitializing(const std::string& type, | 47 virtual void SetTechnologyInitializing(const std::string& type, |
| 55 bool initializing) = 0; | 48 bool initializing) = 0; |
| 56 virtual void AddGeoNetwork(const std::string& technology, | 49 virtual void AddGeoNetwork(const std::string& technology, |
| 57 const base::DictionaryValue& network) = 0; | 50 const base::DictionaryValue& network) = 0; |
| 58 | 51 |
| 59 // Does not create an actual profile in the ProfileClient but update the | 52 // Does not create an actual profile in the ProfileClient but update the |
| 60 // profiles list and sends a notification to observers. This should only be | 53 // profiles list and sends a notification to observers. This should only be |
| 61 // called by the ProfileStub. In all other cases, use | 54 // called by the ProfileStub. In all other cases, use |
| 62 // ShillProfileClient::TestInterface::AddProfile. | 55 // ShillProfileClient::TestInterface::AddProfile. |
| 63 virtual void AddProfile(const std::string& profile_path) = 0; | 56 virtual void AddProfile(const std::string& profile_path) = 0; |
| 64 | 57 |
| 65 // Used to reset all properties; does not notify observers. | 58 // Used to reset all properties; does not notify observers. |
| 66 virtual void ClearProperties() = 0; | 59 virtual void ClearProperties() = 0; |
| 67 | 60 |
| 61 // Move an existing service to a different index, e.g. to simulate the |
| 62 // result of a successful connect. |
| 63 virtual void MoveServiceToIndex(const std::string& service_path, |
| 64 size_t index, |
| 65 bool add_to_watch_list) = 0; |
| 66 |
| 67 // Add/Remove/ClearService should only be called from ShillServiceClient. |
| 68 virtual void AddManagerService(const std::string& service_path, |
| 69 bool add_to_watch_list) = 0; |
| 70 virtual void RemoveManagerService(const std::string& service_path) = 0; |
| 71 virtual void ClearManagerServices() = 0; |
| 72 |
| 68 protected: | 73 protected: |
| 69 virtual ~TestInterface() {} | 74 virtual ~TestInterface() {} |
| 70 }; | 75 }; |
| 71 | 76 |
| 72 // Properties used to verify the origin device. | 77 // Properties used to verify the origin device. |
| 73 struct VerificationProperties { | 78 struct VerificationProperties { |
| 74 VerificationProperties(); | 79 VerificationProperties(); |
| 75 ~VerificationProperties(); | 80 ~VerificationProperties(); |
| 76 | 81 |
| 77 // A string containing a PEM-encoded X.509 certificate for use in verifying | 82 // A string containing a PEM-encoded X.509 certificate for use in verifying |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 // Create() should be used instead. | 219 // Create() should be used instead. |
| 215 ShillManagerClient(); | 220 ShillManagerClient(); |
| 216 | 221 |
| 217 private: | 222 private: |
| 218 DISALLOW_COPY_AND_ASSIGN(ShillManagerClient); | 223 DISALLOW_COPY_AND_ASSIGN(ShillManagerClient); |
| 219 }; | 224 }; |
| 220 | 225 |
| 221 } // namespace chromeos | 226 } // namespace chromeos |
| 222 | 227 |
| 223 #endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ | 228 #endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ |
| OLD | NEW |