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

Side by Side Diff: ui/aura/client/aura_constants.h

Issue 2640123004: Initial support for native accessibility in ARC (Closed)
Patch Set: Address various feedback. Created 3 years, 10 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_AURA_CLIENT_AURA_CONSTANTS_H_ 5 #ifndef UI_AURA_CLIENT_AURA_CONSTANTS_H_
6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_ 6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 105
106 // The color of the window header. 106 // The color of the window header.
107 AURA_EXPORT extern const aura::WindowProperty<SkColor>* const kTopViewColor; 107 AURA_EXPORT extern const aura::WindowProperty<SkColor>* const kTopViewColor;
108 108
109 // A property key to store the window icon, typically 16x16 for title bars. 109 // A property key to store the window icon, typically 16x16 for title bars.
110 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey; 110 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey;
111 111
112 AURA_EXPORT extern const aura::WindowProperty<ui::mojom::WindowType>* const 112 AURA_EXPORT extern const aura::WindowProperty<ui::mojom::WindowType>* const
113 kWindowTypeKey; 113 kWindowTypeKey;
114 114
115 // A property key to store the id of an accessible child tree hosted by this
116 // window. Type of value is an int.
117 AURA_EXPORT extern const WindowProperty<int32_t>* const
118 kAccessibleChildTreeIdKey;
119
115 // Alphabetical sort. 120 // Alphabetical sort.
116 121
117 } // namespace client 122 } // namespace client
118 } // namespace aura 123 } // namespace aura
119 124
120 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ 125 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698