| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 size_t index, | 48 size_t index, |
| 49 bool add_to_watch_list) = 0; | 49 bool add_to_watch_list) = 0; |
| 50 virtual void RemoveService(const std::string& service_path) = 0; | 50 virtual void RemoveService(const std::string& service_path) = 0; |
| 51 virtual void ClearServices() = 0; | 51 virtual void ClearServices() = 0; |
| 52 virtual void AddTechnology(const std::string& type, bool enabled) = 0; | 52 virtual void AddTechnology(const std::string& type, bool enabled) = 0; |
| 53 virtual void RemoveTechnology(const std::string& type) = 0; | 53 virtual void RemoveTechnology(const std::string& type) = 0; |
| 54 virtual void SetTechnologyInitializing(const std::string& type, | 54 virtual void SetTechnologyInitializing(const std::string& type, |
| 55 bool initializing) = 0; | 55 bool initializing) = 0; |
| 56 virtual void AddGeoNetwork(const std::string& technology, | 56 virtual void AddGeoNetwork(const std::string& technology, |
| 57 const base::DictionaryValue& network) = 0; | 57 const base::DictionaryValue& network) = 0; |
| 58 virtual void AddProfile(const std::string& profile_path) = 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 |
| 62 protected: | 63 protected: |
| 63 virtual ~TestInterface() {} | 64 virtual ~TestInterface() {} |
| 64 }; | 65 }; |
| 65 | 66 |
| 66 virtual ~ShillManagerClient(); | 67 virtual ~ShillManagerClient(); |
| 67 | 68 |
| (...skipping 121 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 |