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

Unified Diff: chromeos/dbus/shill_manager_client.h

Issue 11192024: Add chromeos::NetworkStateManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address feedback Created 8 years, 1 month 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 01dd63a0dfa0aa646eeee5a6423f7f4ab4d138e6..fea40da6d3ee728888512f90c6ba2875ae6ac4d9 100644
--- a/chromeos/dbus/shill_manager_client.h
+++ b/chromeos/dbus/shill_manager_client.h
@@ -40,9 +40,14 @@ class CHROMEOS_EXPORT ShillManagerClient {
virtual void RemoveDevice(const std::string& device_path) = 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,
+ bool add_to_watch_list) = 0;
virtual void RemoveService(const std::string& service_path) = 0;
virtual void AddTechnology(const std::string& type, bool enabled) = 0;
virtual void RemoveTechnology(const std::string& type) = 0;
+
+ // Used to reset all properties; does not notify observers.
virtual void ClearProperties() = 0;
protected:

Powered by Google App Engine
This is Rietveld 408576698