OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2014 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 UI_VIEWS_CONTROLS_WINDOW_LABEL_H_ |
| 6 #define UI_VIEWS_CONTROLS_WINDOW_LABEL_H_ |
| 7 |
| 8 #include "ui/views/controls/label.h" |
| 9 |
| 10 namespace views { |
| 11 |
| 12 ///////////////////////////////////////////////////////////////////////////// |
| 13 // |
| 14 // Window Label class |
| 15 // |
| 16 // A window label is a label subclass that works as a window from the point of |
| 17 // view of a11y. |
| 18 // |
| 19 ///////////////////////////////////////////////////////////////////////////// |
| 20 class VIEWS_EXPORT WindowLabel : public Label { |
| 21 public: |
| 22 WindowLabel(); |
| 23 ~WindowLabel(); |
| 24 |
| 25 virtual void GetAccessibleState(ui::AXViewState* state) OVERRIDE; |
| 26 }; |
| 27 |
| 28 } // namespace views |
| 29 |
| 30 #endif // UI_VIEWS_CONTROLS_WINDOW_LABEL_H_ |
OLD | NEW |