Roll src/third_party/WebKit 75a2fa9:2546356 (svn 202272:202273)
[chromium-blink-merge.git] / chromeos / dbus / shill_property_changed_observer.h
blob7ee937328cbddc7ea0930034c6d4c07d29a9253b
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
3 // found in the LICENSE file.
5 #ifndef CHROMEOS_DBUS_SHILL_PROPERTY_CHANGED_OBSERVER_H_
6 #define CHROMEOS_DBUS_SHILL_PROPERTY_CHANGED_OBSERVER_H_
8 #include <string>
10 namespace base {
11 class Value;
14 namespace chromeos {
16 // This is a base class for observers which handle the PropertyChanged signal
17 // sent from Shill.
18 class ShillPropertyChangedObserver {
19 public:
20 virtual void OnPropertyChanged(const std::string& name,
21 const base::Value& value) = 0;
23 protected:
24 virtual ~ShillPropertyChangedObserver() {}
27 } // namespace chromeos
29 #endif // CHROMEOS_DBUS_SHILL_PROPERTY_CHANGED_OBSERVER_H_