| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 virtual void AddProfile(const std::string& profile_path) = 0; | 55 virtual void AddProfile(const std::string& profile_path) = 0; |
| 56 | 56 |
| 57 // Used to reset all properties; does not notify observers. | 57 // Used to reset all properties; does not notify observers. |
| 58 virtual void ClearProperties() = 0; | 58 virtual void ClearProperties() = 0; |
| 59 | 59 |
| 60 // Set manager property. | 60 // Set manager property. |
| 61 virtual void SetManagerProperty(const std::string& key, | 61 virtual void SetManagerProperty(const std::string& key, |
| 62 const base::Value& value) = 0; | 62 const base::Value& value) = 0; |
| 63 | 63 |
| 64 // Modify services in the Manager's list. | 64 // Modify services in the Manager's list. |
| 65 virtual void AddManagerService(const std::string& service_path, | 65 virtual void AddManagerService(const std::string& service_path) = 0; |
| 66 bool add_to_visible_list) = 0; | 66 virtual void RemoveManagerService(const std::string& service_path) = 0; |
| 67 virtual void RemoveManagerService(const std::string& service_path, | |
| 68 bool remove_from_complete_list) = 0; | |
| 69 virtual void ClearManagerServices() = 0; | 67 virtual void ClearManagerServices() = 0; |
| 70 | 68 |
| 71 // Called by ShillServiceClient when a service's State property changes, | 69 // Called by ShillServiceClient when a service's State property changes, |
| 72 // before notifying observers. Sets the DefaultService property to empty | 70 // before notifying observers. Sets the DefaultService property to empty |
| 73 // if the state changes to a non-connected state. | 71 // if the state changes to a non-connected state. |
| 74 virtual void ServiceStateChanged(const std::string& service_path, | 72 virtual void ServiceStateChanged(const std::string& service_path, |
| 75 const std::string& state) = 0; | 73 const std::string& state) = 0; |
| 76 | 74 |
| 77 // Called by ShillServiceClient when a service's State property changes, | 75 // Called by ShillServiceClient when a service's State property changes. |
| 78 // after notifying observers. Services are sorted first by Active or | 76 // If |notify| is true, notifies observers if a list changed. Services are |
| 79 // Inactive State, then by Type. | 77 // sorted first by active, inactive, or disabled state, then by type. |
| 80 virtual void SortManagerServices() = 0; | 78 virtual void SortManagerServices(bool notify) = 0; |
| 81 | 79 |
| 82 // Sets up the default fake environment based on default initial states | 80 // Sets up the default fake environment based on default initial states |
| 83 // or states provided by the command line. | 81 // or states provided by the command line. |
| 84 virtual void SetupDefaultEnvironment() = 0; | 82 virtual void SetupDefaultEnvironment() = 0; |
| 85 | 83 |
| 86 // Returns the interactive delay specified on the command line, 0 for none. | 84 // Returns the interactive delay specified on the command line, 0 for none. |
| 87 virtual int GetInteractiveDelay() const = 0; | 85 virtual int GetInteractiveDelay() const = 0; |
| 88 | 86 |
| 89 // Sets the 'best' service to connect to on a ConnectToBestServices call. | 87 // Sets the 'best' service to connect to on a ConnectToBestServices call. |
| 90 virtual void SetBestServiceToConnect(const std::string& service_path) = 0; | 88 virtual void SetBestServiceToConnect(const std::string& service_path) = 0; |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 // Create() should be used instead. | 229 // Create() should be used instead. |
| 232 ShillManagerClient(); | 230 ShillManagerClient(); |
| 233 | 231 |
| 234 private: | 232 private: |
| 235 DISALLOW_COPY_AND_ASSIGN(ShillManagerClient); | 233 DISALLOW_COPY_AND_ASSIGN(ShillManagerClient); |
| 236 }; | 234 }; |
| 237 | 235 |
| 238 } // namespace chromeos | 236 } // namespace chromeos |
| 239 | 237 |
| 240 #endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ | 238 #endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ |
| OLD | NEW |