Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / chromeos / accessibility / accessibility_util.h
blob7f703126dd2af1e709a234118def70fba8cbc74c
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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_UTIL_H_
6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_UTIL_H_
8 class Browser;
10 namespace chromeos {
11 namespace accessibility {
13 // Enables or disable the virtual keyboard.
14 void EnableVirtualKeyboard(bool enabled);
16 // Returns true if the Virtual Keyboard is enabled, or false if not.
17 bool IsVirtualKeyboardEnabled();
19 // Shows the accessibility help tab on the browser.
20 void ShowAccessibilityHelp(Browser* browser);
22 } // namespace accessibility
23 } // namespace chromeos
25 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_UTIL_H_