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

Side by Side Diff: chrome/browser/accessibility/accessibility_extension_api_constants.h

Issue 560983002: Add private extension API to move the accessibility focus ring. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@focus_ring_2_accessibility_ring
Patch Set: Rebase Created 6 years, 3 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 // Constants used to for the Accessibility API. 5 // Constants used to for the Accessibility API.
6 6
7 #ifndef CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_ 7 #ifndef CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_
8 #define CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_ 8 #define CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_
9 9
10 namespace extension_accessibility_api_constants { 10 namespace extension_accessibility_api_constants {
(...skipping 28 matching lines...) Expand all
39 extern const char kTypeRadioButton[]; 39 extern const char kTypeRadioButton[];
40 extern const char kTypeSlider[]; 40 extern const char kTypeSlider[];
41 extern const char kTypeStaticText[]; 41 extern const char kTypeStaticText[];
42 extern const char kTypeTab[]; 42 extern const char kTypeTab[];
43 extern const char kTypeTextBox[]; 43 extern const char kTypeTextBox[];
44 extern const char kTypeTree[]; 44 extern const char kTypeTree[];
45 extern const char kTypeTreeItem[]; 45 extern const char kTypeTreeItem[];
46 extern const char kTypeVolume[]; 46 extern const char kTypeVolume[];
47 extern const char kTypeWindow[]; 47 extern const char kTypeWindow[];
48 48
49 // Errors.
50 extern const char kErrorNotSupported[];
51
49 }; // namespace extension_accessibility_api_constants 52 }; // namespace extension_accessibility_api_constants
50 53
51 #endif // CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_ 54 #endif // CHROME_BROWSER_ACCESSIBILITY_ACCESSIBILITY_EXTENSION_API_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698