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

Side by Side Diff: ui/views/controls/window_label.h

Issue 251103005: Added arrow key navigation to Overview Mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase with latest changes, test stub (don't look into that yet!) Created 6 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
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698