Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Unified Diff: chromeos/dbus/shill_manager_client.h

Issue 14566009: Add NetworkConnectionHandler class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Modify Shill stubs Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromeos/dbus/shill_manager_client.h
diff --git a/chromeos/dbus/shill_manager_client.h b/chromeos/dbus/shill_manager_client.h
index 80116bde1c307a40e8d5efd84a422a2e27721150..3e04d29598fcdd6f8037aebe2686feee7285e63a 100644
--- a/chromeos/dbus/shill_manager_client.h
+++ b/chromeos/dbus/shill_manager_client.h
@@ -42,13 +42,14 @@ class CHROMEOS_EXPORT ShillManagerClient {
virtual void AddDevice(const std::string& device_path) = 0;
virtual void RemoveDevice(const std::string& device_path) = 0;
virtual void ClearDevices() = 0;
- virtual void AddService(const std::string& service_path,
- bool add_to_watch_list) = 0;
- virtual void AddServiceAtIndex(const std::string& service_path,
- size_t index,
+ // 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.
+ virtual void AddManagerService(const std::string& service_path,
bool add_to_watch_list) = 0;
- virtual void RemoveService(const std::string& service_path) = 0;
- virtual void ClearServices() = 0;
+ virtual void MoveServiceToIndex(const std::string& service_path,
+ size_t index,
+ bool add_to_watch_list) = 0;
+ virtual void RemoveManagerService(const std::string& service_path) = 0;
+ virtual void ClearManagerServices() = 0;
virtual void AddTechnology(const std::string& type, bool enabled) = 0;
virtual void RemoveTechnology(const std::string& type) = 0;
virtual void SetTechnologyInitializing(const std::string& type,

Powered by Google App Engine
This is Rietveld 408576698