Home
last modified time | relevance | path

Searched refs:KeyHoldDetector (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/ash/accelerators/
Dkey_hold_detector.h21 class ASH_EXPORT KeyHoldDetector : public ui::EventHandler {
41 explicit KeyHoldDetector(scoped_ptr<Delegate> delegate);
42 virtual ~KeyHoldDetector();
66 DISALLOW_COPY_AND_ASSIGN(KeyHoldDetector);
Dkey_hold_detector.cc50 KeyHoldDetector::KeyHoldDetector(scoped_ptr<Delegate> delegate) in KeyHoldDetector() function in ash::KeyHoldDetector
54 KeyHoldDetector::~KeyHoldDetector() {} in ~KeyHoldDetector()
56 void KeyHoldDetector::OnKeyEvent(ui::KeyEvent* event) { in OnKeyEvent()
Dspoken_feedback_toggler.cc28 scoped_ptr<KeyHoldDetector::Delegate> delegate(new SpokenFeedbackToggler()); in CreateHandler()
29 return scoped_ptr<ui::EventHandler>(new KeyHoldDetector(delegate.Pass())); in CreateHandler()
Dmagnifier_key_scroller.cc37 scoped_ptr<KeyHoldDetector::Delegate> delegate(new MagnifierKeyScroller()); in CreateHandler()
38 return scoped_ptr<ui::EventHandler>(new KeyHoldDetector(delegate.Pass())); in CreateHandler()
Dmagnifier_key_scroller.h20 class ASH_EXPORT MagnifierKeyScroller : public KeyHoldDetector::Delegate {
Dspoken_feedback_toggler.h20 class ASH_EXPORT SpokenFeedbackToggler : public KeyHoldDetector::Delegate {