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

Unified Diff: content/common/accessibility_notification.h

Issue 23651003: Use Blink accessibility enums in Chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/accessibility_node_data.cc ('k') | content/common/swapped_out_messages.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/accessibility_notification.h
diff --git a/content/common/accessibility_notification.h b/content/common/accessibility_notification.h
deleted file mode 100644
index a616f9e9b5c26be96f1e2dc7217829261ef06653..0000000000000000000000000000000000000000
--- a/content/common/accessibility_notification.h
+++ /dev/null
@@ -1,89 +0,0 @@
-// Copyright 2013 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.
-
-#ifndef CONTENT_COMMON_ACCESSIBILITY_NOTIFICATION_H_
-#define CONTENT_COMMON_ACCESSIBILITY_NOTIFICATION_H_
-
-enum AccessibilityNotification {
- // The active descendant of a node has changed.
- AccessibilityNotificationActiveDescendantChanged,
-
- // An ARIA attribute changed, one that isn't covered by any
- // other notification.
- AccessibilityNotificationAriaAttributeChanged,
-
- // Autocorrect changed the text of a node.
- AccessibilityNotificationAutocorrectionOccurred,
-
- // An alert appeared.
- AccessibilityNotificationAlert,
-
- // A node has lost focus.
- AccessibilityNotificationBlur,
-
- // The node checked state has changed.
- AccessibilityNotificationCheckStateChanged,
-
- // The node tree structure has changed.
- AccessibilityNotificationChildrenChanged,
-
- // The node in focus has changed.
- AccessibilityNotificationFocusChanged,
-
- // Whether or not the node is invalid has changed.
- AccessibilityNotificationInvalidStatusChanged,
-
- // Page layout has completed.
- AccessibilityNotificationLayoutComplete,
-
- // Content within a part of the page marked as a live region changed.
- AccessibilityNotificationLiveRegionChanged,
-
- // The document node has loaded.
- AccessibilityNotificationLoadComplete,
-
- // A menu list selection changed.
- AccessibilityNotificationMenuListItemSelected,
-
- // A menu list value changed.
- AccessibilityNotificationMenuListValueChanged,
-
- // The object's accessible name changed.
- AccessibilityNotificationTextChanged,
-
- // An object was shown.
- AccessibilityNotificationObjectShow,
-
- // An object was hidden.
- AccessibilityNotificationObjectHide,
-
- // The number of rows in a grid or tree control changed.
- AccessibilityNotificationRowCountChanged,
-
- // A row in a grid or tree control was collapsed.
- AccessibilityNotificationRowCollapsed,
-
- // A row in a grid or tree control was expanded.
- AccessibilityNotificationRowExpanded,
-
- // The document was scrolled to an anchor node.
- AccessibilityNotificationScrolledToAnchor,
-
- // One or more selected children of this node have changed.
- AccessibilityNotificationSelectedChildrenChanged,
-
- // The text cursor or selection changed.
- AccessibilityNotificationSelectedTextChanged,
-
- // Text was inserted in a node with text content.
- AccessibilityNotificationTextInserted,
-
- // Text was removed in a node with text content.
- AccessibilityNotificationTextRemoved,
-
- // The node value has changed.
- AccessibilityNotificationValueChanged,
-};
-
-#endif // CONTENT_COMMON_ACCESSIBILITY_NOTIFICATION_H_
« no previous file with comments | « content/common/accessibility_node_data.cc ('k') | content/common/swapped_out_messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698