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

Unified Diff: chromeos/network/shill_service_observer.h

Issue 11192024: Add chromeos::NetworkStateManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix comment 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
« no previous file with comments | « chromeos/network/shill_property_handler_unittest.cc ('k') | chromeos/network/shill_service_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/shill_service_observer.h
diff --git a/chromeos/network/shill_service_observer.h b/chromeos/network/shill_service_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..1365f0ef4d3f7a6c7dff83615ed25b24658168ab
--- /dev/null
+++ b/chromeos/network/shill_service_observer.h
@@ -0,0 +1,44 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROMEOS_NETWORK_SHILL_SERVICE_OBSERVER_H_
+#define CHROMEOS_NETWORK_SHILL_SERVICE_OBSERVER_H_
+
+#include <string>
+
+#include "base/callback.h"
+#include "chromeos/dbus/shill_property_changed_observer.h"
+
+namespace chromeos {
+namespace internal {
+
+// Class to manage Shill service property changed observers. Observers are
+// added on construction and removed on destruction. Runs the handler when
+// OnPropertyChanged is called.
+class ShillServiceObserver : public ShillPropertyChangedObserver {
+ public:
+ typedef base::Callback<void(const std::string& service,
+ const std::string& name,
+ const base::Value& value)> Handler;
+
+ ShillServiceObserver(const std::string& service_path,
+ const Handler& handler);
+
+ virtual ~ShillServiceObserver();
+
+ // ShillPropertyChangedObserver overrides.
+ virtual void OnPropertyChanged(const std::string& key,
+ const base::Value& value) OVERRIDE;
+
+ private:
+ std::string service_path_;
+ Handler handler_;
+
+ DISALLOW_COPY_AND_ASSIGN(ShillServiceObserver);
+};
+
+} // namespace internal
+} // namespace chromeos
+
+#endif // CHROMEOS_NETWORK_SHILL_SERVICE_OBSERVER_H_
« no previous file with comments | « chromeos/network/shill_property_handler_unittest.cc ('k') | chromeos/network/shill_service_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698