From 48c783d2ad109f772f09df441dd873682a7bf1b0 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/TProbe.py') diff --git a/tutorius/TProbe.py b/tutorius/TProbe.py index 4e458a0..06e4794 100644 --- a/tutorius/TProbe.py +++ b/tutorius/TProbe.py @@ -54,11 +54,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 @@ -74,8 +76,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