From 1d00a7f42f8dc7905490de0d7ccf218db3730f1e Mon Sep 17 00:00:00 2001 From: erick Date: Wed, 02 Dec 2009 03:31:36 +0000 Subject: Reexposed explicitly the activity_name and unique_id used in probes for the dbus session as constructor arguments on probe --- (limited to 'tutorius') diff --git a/tutorius/TProbe.py b/tutorius/TProbe.py index 2834f0c..0814b13 100644 --- a/tutorius/TProbe.py +++ b/tutorius/TProbe.py @@ -57,11 +57,13 @@ class TProbe(dbus.service.Object): a DBUS Interface. """ - def __init__(self, activity, service_proxy=None): + def __init__(self, activity, activity_name, unique_id, service_proxy=None): """ Create and register a TProbe for an activity. @param activity activity reference, must be a gtk container + @param activity_name generic name for the activity + @param unique_id specific name for this instance @param service_proxy A Service proxy object to do the registering """ # Moving the ObjectStore assignment here, in the meantime @@ -77,8 +79,8 @@ class TProbe(dbus.service.Object): ObjectStore().activity = activity - self._activity_name = activity.get_bundle_id() - self._unique_id = activity.get_id() + self._activity_name = activity_name + self._unique_id = unique_id LOGGER.debug("TProbe :: Creating TProbe for %s (%d)", self._activity_name, os.getpid()) LOGGER.debug("TProbe :: Current gobject context: %s", str(gobject.main_context_default())) -- cgit v0.9.1