OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_UTIL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_UTIL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_UTIL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_UTIL_H_ |
7 | 7 |
8 #include "content/public/browser/browser_context.h" | |
James Cook
2014/08/08 17:06:31
not needed. forward declare BrowserContext:
names
evy
2014/08/08 18:37:47
Done.
| |
8 class Browser; | 9 class Browser; |
9 | 10 |
10 namespace chromeos { | 11 namespace chromeos { |
11 namespace accessibility { | 12 namespace accessibility { |
12 | 13 |
13 // Enables or disable the virtual keyboard. | 14 // Enables or disable the virtual keyboard. |
14 void EnableVirtualKeyboard(bool enabled); | 15 void EnableVirtualKeyboard(bool enabled); |
15 | 16 |
16 // Returns true if the Virtual Keyboard is enabled, or false if not. | 17 // Returns true if the Virtual Keyboard is enabled, or false if not. |
17 bool IsVirtualKeyboardEnabled(); | 18 bool IsVirtualKeyboardEnabled(); |
18 | 19 |
19 // Shows the accessibility help tab on the browser. | 20 // Shows the accessibility help tab on the browser. |
20 void ShowAccessibilityHelp(Browser* browser); | 21 void ShowAccessibilityHelp(Browser* browser); |
21 | 22 |
23 void SimulateTouchScreenInChromeVoxForTest(content::BrowserContext* profile); | |
24 | |
22 } // namespace accessibility | 25 } // namespace accessibility |
23 } // namespace chromeos | 26 } // namespace chromeos |
24 | 27 |
25 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_UTIL_H_ | 28 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_UTIL_H_ |
OLD | NEW |