forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspoken_feedback_enabler.h
37 lines (27 loc) · 944 Bytes
/
spoken_feedback_enabler.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_ACCESSIBILITY_SPOKEN_FEEDBACK_ENABLER_H_
#define ASH_ACCESSIBILITY_SPOKEN_FEEDBACK_ENABLER_H_
#include "ash/ash_export.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
namespace ash {
// A class that enables ChromeVox based on a timer, providing progress
// sound feedback.
class ASH_EXPORT SpokenFeedbackEnabler {
public:
SpokenFeedbackEnabler();
~SpokenFeedbackEnabler();
private:
// Handles ticks of the timer.
void OnTimer();
// The start time.
base::TimeTicks start_time_;
// A timer that triggers repeatedly until either cancel or the desired time
// elapsed.
base::RepeatingTimer timer_;
DISALLOW_COPY_AND_ASSIGN(SpokenFeedbackEnabler);
};
} // namespace ash
#endif // ASH_ACCESSIBILITY_SPOKEN_FEEDBACK_ENABLER_H_