OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 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 ASH_MUS_WINDOW_PROPERTIES_H_ | |
6 #define ASH_MUS_WINDOW_PROPERTIES_H_ | |
7 | |
8 #include "ui/aura/aura_export.h" | |
9 #include "ui/aura/window.h" | |
10 | |
11 namespace ash { | |
12 namespace mus { | |
13 | |
14 // Maps to ui::mojom::WindowManager::kRendererParentTitleArea_Property. | |
15 AURA_EXPORT extern const aura::WindowProperty<bool>* const | |
James Cook
2016/12/05 19:21:45
ASH_EXPORT?
sky
2016/12/05 21:39:20
Actually, no export is needed. Removed.
| |
16 kRenderTitleAreaProperty; | |
17 | |
18 AURA_EXPORT extern const aura::WindowProperty<bool>* const kWindowIsJanky; | |
James Cook
2016/12/05 19:21:45
nit: Document or point to mojo property it maps to
sky
2016/12/05 21:39:20
Done.
| |
19 | |
20 } // namespace mus | |
21 } // namespace ash | |
22 | |
23 #endif // ASH_MUS_WINDOW_PROPERTIES_H_ | |
OLD | NEW |