~thalexander/unity/update-fsf-address

« back to all changes in this revision

Viewing changes to unity-shared/GnomeKeyGrabberImpl.h

  • Committer: Marco Trevisan (Treviño)
  • Date: 2016-03-07 18:51:47 UTC
  • mfrom: (4080 unity)
  • mto: This revision was merged to the branch mainline in revision 4085.
  • Revision ID: mail@3v1n0.net-20160307185147-0p1m89up4tqfb6w1
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
  uint32_t GrabDBusAccelerator(std::string const& owner, std::string const& accelerator, uint32_t flags);
53
53
  bool UnGrabDBusAccelerator(std::string const& sender, uint32_t action_id);
54
54
  void ActivateDBusAction(CompAction const& action, uint32_t id, uint32_t device, uint32_t timestamp) const;
55
 
  bool RemoveActionForOwner(uint32_t action_id, std::string const& owner);
56
55
 
57
56
  bool IsActionPostponed(CompAction const& action) const;
58
57
 
63
62
 
64
63
  uint32_t current_action_id_;
65
64
  std::vector<uint32_t> actions_ids_;
 
65
  std::vector<uint32_t> actions_customers_;
66
66
  CompAction::Vector actions_;
67
67
 
68
68
  struct OwnerActions { glib::DBusNameWatcher::Ptr watcher; std::unordered_set<uint32_t> actions; };