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

Unified Diff: chrome/browser/extensions/extension_accessibility_api_constants.h

Issue 402099: Add an accessibility API for events raised outside of the web content. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_accessibility_api_constants.h
===================================================================
--- chrome/browser/extensions/extension_accessibility_api_constants.h (revision 0)
+++ chrome/browser/extensions/extension_accessibility_api_constants.h (revision 0)
@@ -0,0 +1,43 @@
+// Copyright (c) 2010 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.
+
+// Constants used to for the Accessibility API.
+
+#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_ACCESSIBILITY_API_CONSTANTS_H_
+#define CHROME_BROWSER_EXTENSIONS_EXTENSION_ACCESSIBILITY_API_CONSTANTS_H_
+
+namespace extension_accessibility_api_constants {
+
+// Keys.
+extern const wchar_t kTypeKey[];
+extern const wchar_t kNameKey[];
+extern const wchar_t kDetailsKey[];
+extern const wchar_t kValueKey[];
+extern const wchar_t kPasswordKey[];
+extern const wchar_t kItemCountKey[];
+extern const wchar_t kItemIndexKey[];
+extern const wchar_t kSelectionStartKey[];
+extern const wchar_t kSelectionEndKey[];
+extern const wchar_t kCheckedKey[];
+
+// Events.
+extern const char kOnWindowOpened[];
+extern const char kOnWindowClosed[];
+extern const char kOnControlFocused[];
+extern const char kOnControlAction[];
+extern const char kOnTextChanged[];
+
+// Types of controls that can receive accessibility events
+extern const char kTypeButton[];
+extern const char kTypeCheckbox[];
+extern const char kTypeComboBox[];
+extern const char kTypeLink[];
+extern const char kTypeRadioButton[];
+extern const char kTypeTab[];
+extern const char kTypeTextBox[];
+extern const char kTypeWindow[];
+
+}; // namespace extension_accessibility_api_constants
+
+#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ACCESSIBILITY_API_CONSTANTS_H_
Property changes on: chrome/browser/extensions/extension_accessibility_api_constants.h
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698