~mhr3/libunity/fix-1062331

« back to all changes in this revision

Viewing changes to protocol/protocol-lens-interface.vala

  • Committer: Tarmac
  • Author(s): Michal Hruby
  • Date: 2012-09-05 10:21:10 UTC
  • mfrom: (171.1.4 libunity)
  • Revision ID: tarmac-20120905102110-4myo5pskc1jyq44r
Add hints parameter to dbus Activate() method. Fixes: . Approved by Pawel Stolowski.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
{
73
73
  public async abstract void info_request () throws IOError;
74
74
 
75
 
  public async abstract ActivationReplyRaw activate (string uri,
76
 
                                               uint action_type) throws IOError;
 
75
  // FIXME: should have the hints param and activate_with_hints should go away
 
76
  public async abstract ActivationReplyRaw activate (
 
77
      string uri, uint action_type) throws IOError;
 
78
 
 
79
  public async abstract ActivationReplyRaw activate_with_hints (
 
80
      string uri, uint action_type, HashTable<string, Variant> hints) throws IOError;
77
81
 
78
82
  public async abstract HashTable<string, Variant> update_preview_property (string uri, HashTable<string, Variant> values) throws IOError;
79
83