Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(346)

Side by Side Diff: chrome/browser/chromeos/accessibility/accessibility_util.h

Issue 447893003: Test that simulates touch exploration and checks speech on tabs and also the empty bookmark bar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: check for existing window.ontouchstart Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 namespace content {
9 class BrowserContext;
James Cook 2014/08/08 20:26:46 nit: No spaces at the front of this line. Also, we
evy 2014/08/08 21:00:29 Done.
10 }
8 class Browser; 11 class Browser;
9 12
10 namespace chromeos { 13 namespace chromeos {
11 namespace accessibility { 14 namespace accessibility {
12 15
13 // Enables or disable the virtual keyboard. 16 // Enables or disable the virtual keyboard.
14 void EnableVirtualKeyboard(bool enabled); 17 void EnableVirtualKeyboard(bool enabled);
15 18
16 // Returns true if the Virtual Keyboard is enabled, or false if not. 19 // Returns true if the Virtual Keyboard is enabled, or false if not.
17 bool IsVirtualKeyboardEnabled(); 20 bool IsVirtualKeyboardEnabled();
18 21
19 // Shows the accessibility help tab on the browser. 22 // Shows the accessibility help tab on the browser.
20 void ShowAccessibilityHelp(Browser* browser); 23 void ShowAccessibilityHelp(Browser* browser);
21 24
25 void SimulateTouchScreenInChromeVoxForTest(content::BrowserContext* profile);
26
22 } // namespace accessibility 27 } // namespace accessibility
23 } // namespace chromeos 28 } // namespace chromeos
24 29
25 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_UTIL_H_ 30 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698