~om26er/ubuntu/oneiric/unity/sru-778256

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/DebugDBusInterface.h

  • Committer: Didier Roche
  • Date: 2011-07-21 16:17:59 UTC
  • mfrom: (55.813.3 upstream)
  • Revision ID: didier.roche@canonical.com-20110721161759-osmh94x428t2bf2b
* New upstream release.
* debian/control:
  - build-dep on libnotify-dev
  - bump libnux-1.0-dev dep for ABI break

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
class DebugDBusInterface
34
34
{
35
35
public:
36
 
  DebugDBusInterface  (Introspectable *introspectable);
37
 
  ~DebugDBusInterface ();
 
36
  DebugDBusInterface(unity::Introspectable* introspectable);
 
37
  ~DebugDBusInterface();
38
38
 
39
39
private:
40
40
  /* methods */
41
41
 
42
 
  static void OnBusAcquired (GDBusConnection *connection, const gchar *name, gpointer data);
43
 
 
44
 
  static void OnNameAcquired (GDBusConnection *connection, const gchar *name, gpointer data);
45
 
 
46
 
  static void OnNameLost (GDBusConnection *connection, const gchar *name, gpointer data);
 
42
  static void OnBusAcquired(GDBusConnection* connection, const gchar* name, gpointer data);
 
43
 
 
44
  static void OnNameAcquired(GDBusConnection* connection, const gchar* name, gpointer data);
 
45
 
 
46
  static void OnNameLost(GDBusConnection* connection, const gchar* name, gpointer data);
47
47
 
48
48
  //static GVariant *GetState (const char *piece);
49
49
 
50
 
  static GVariant *BuildFakeReturn ();
 
50
  static GVariant* BuildFakeReturn();
51
51
 
52
52
  /* members */
53
 
  guint                                         _owner_id;
 
53
  guint           _owner_id;
54
54
};
55
55
 
56
56
#endif /* _DEBUG_DBUS_INTERFACE_H */