summaryrefslogtreecommitdiff
path: root/dbus/object_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/object_manager.h')
-rw-r--r--dbus/object_manager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbus/object_manager.h b/dbus/object_manager.h
index 90cf919639..842a1378a2 100644
--- a/dbus/object_manager.h
+++ b/dbus/object_manager.h
@@ -167,8 +167,8 @@ public:
// called on each interface implementation with differing values of
// |interface_name| as appropriate. An implementation class will only
// receive multiple calls if it has registered for multiple interfaces.
- virtual void ObjectAdded(const ObjectPath& /*object_path*/,
- const std::string& /*interface_name*/) { }
+ virtual void ObjectAdded(const ObjectPath& object_path,
+ const std::string& interface_name) { }
// Called by ObjectManager to inform the implementation class than an
// object with the path |object_path| has been removed. Ths D-Bus interface
@@ -179,8 +179,8 @@ public:
// This method will be called before the Properties structure and the
// ObjectProxy object for the given interface are cleaned up, it is safe
// to retrieve them during removal to vary processing.
- virtual void ObjectRemoved(const ObjectPath& /*object_path*/,
- const std::string& /*interface_name*/) { }
+ virtual void ObjectRemoved(const ObjectPath& object_path,
+ const std::string& interface_name) { }
};
// Client code should use Bus::GetObjectManager() instead of this constructor.