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

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

Issue 2750533006: Initial skeleton of Accessibility Object Model Phase 1 (Closed)
Patch Set: Created 3 years, 9 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ElementAccessibleNode_h
6 #define ElementAccessibleNode_h
7
8 #include "core/dom/Element.h"
9 #include "modules/accessibility/AccessibleNode.h"
10
11 namespace blink {
12
13 // Access an Accessibility Object Model node from a DOM Element.
14 // Explainer: https://github.com/WICG/aom/blob/master/explainer.md
15 // Spec: https://wicg.github.io/aom/spec/
16 class ElementAccessibleNode {
17 STATIC_ONLY(ElementAccessibleNode);
18
19 public:
20 static AccessibleNode* accessibleNode(Element&);
21 };
22
23 } // namespace blink
24
25 #endif // ElementAccessibleNode_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698