~vanvugt/mir/fix-1226139

« back to all changes in this revision

Viewing changes to include/server/mir/input/android/dispatcher_input_configuration.h

  • Committer: Tarmac
  • Author(s): Alan Griffiths
  • Date: 2013-09-11 09:15:39 UTC
  • mfrom: (1046.2.17 mir3)
  • Revision ID: tarmac-20130911091539-4qynhkip96mr5h5a
input: Connect nested input relay to input dispatch.

Approved by Kevin DuBois, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
    virtual bool is_key_repeat_enabled();
100
100
 
101
101
protected:
102
 
    virtual droidinput::sp<droidinput::InputDispatcherInterface> the_dispatcher();
 
102
    virtual droidinput::sp<droidinput::InputDispatcherInterface> the_dispatcher() = 0;
103
103
 
104
104
    virtual std::shared_ptr<InputThread> the_dispatcher_thread();
105
105
 
113
113
    std::shared_ptr<input::InputReport> const input_report;
114
114
 
115
115
    CachedPtr<input::InputManager> input_manager;
 
116
 
116
117
private:
117
118
    CachedPtr<InputThread> dispatcher_thread;
118
119
    CachedPtr<InputRegistrar> input_registrar;
120
121
    CachedPtr<shell::InputTargeter> input_targeter;
121
122
 
122
123
    CachedAndroidPtr<droidinput::InputDispatcherPolicyInterface> dispatcher_policy;
123
 
    CachedAndroidPtr<droidinput::InputDispatcherInterface> dispatcher;
124
124
};
125
125
}
126
126
}