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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/AXNodeObject.h

Issue 2890723003: Slider events with valuetext (Closed)
Patch Set: Fix test Created 3 years, 7 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 /* 1 /*
2 * Copyright (C) 2012, Google Inc. All rights reserved. 2 * Copyright (C) 2012, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 bool IsMeter() const final; 117 bool IsMeter() const final;
118 bool IsMultiSelectable() const override; 118 bool IsMultiSelectable() const override;
119 bool IsNativeImage() const; 119 bool IsNativeImage() const;
120 bool IsNativeTextControl() const final; 120 bool IsNativeTextControl() const final;
121 bool IsNonNativeTextControl() const final; 121 bool IsNonNativeTextControl() const final;
122 bool IsPasswordField() const final; 122 bool IsPasswordField() const final;
123 bool IsProgressIndicator() const override; 123 bool IsProgressIndicator() const override;
124 bool IsRichlyEditable() const override; 124 bool IsRichlyEditable() const override;
125 bool IsSlider() const override; 125 bool IsSlider() const override;
126 bool IsNativeSlider() const override; 126 bool IsNativeSlider() const override;
127 bool IsMoveableSplitter() const override;
127 128
128 // Check object state. 129 // Check object state.
129 bool IsClickable() const final; 130 bool IsClickable() const final;
130 bool IsEnabled() const override; 131 bool IsEnabled() const override;
131 AccessibilityExpanded IsExpanded() const override; 132 AccessibilityExpanded IsExpanded() const override;
132 bool IsModal() const final; 133 bool IsModal() const final;
133 bool IsPressed() const final; 134 bool IsPressed() const final;
134 bool IsReadOnly() const override; 135 bool IsReadOnly() const override;
135 bool IsRequired() const final; 136 bool IsRequired() const final;
136 137
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 NameSources*, 240 NameSources*,
240 bool* found_text_alternative) const; 241 bool* found_text_alternative) const;
241 float StepValueForRange() const; 242 float StepValueForRange() const;
242 bool IsDescendantOfElementType(HashSet<QualifiedName>& tag_names) const; 243 bool IsDescendantOfElementType(HashSet<QualifiedName>& tag_names) const;
243 String PlaceholderFromNativeAttribute() const; 244 String PlaceholderFromNativeAttribute() const;
244 }; 245 };
245 246
246 } // namespace blink 247 } // namespace blink
247 248
248 #endif // AXNodeObject_h 249 #endif // AXNodeObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698