forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccessibility.h
34 lines (26 loc) · 1.02 KB
/
accessibility.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
// Copyright 2013 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 CHROME_BROWSER_CHROMEOS_INPUT_METHOD_ACCESSIBILITY_H_
#define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_ACCESSIBILITY_H_
#include "base/macros.h"
#include "ui/base/ime/chromeos/input_method_manager.h"
namespace chromeos {
namespace input_method {
// Accessibility is a class handling accessibility feedbacks.
class Accessibility
: public InputMethodManager::Observer {
public:
explicit Accessibility(InputMethodManager* imm);
~Accessibility() override;
private:
// InputMethodManager::Observer implementation.
void InputMethodChanged(InputMethodManager* imm,
Profile* profile,
bool show_message) override;
InputMethodManager* imm_;
DISALLOW_COPY_AND_ASSIGN(Accessibility);
};
} // namespace input_method
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_ACCESSIBILITY_H_