Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 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_WM_DOCK_DOCK_TYPES_H_ | |
| 6 #define ASH_WM_DOCK_DOCK_TYPES_H_ | |
| 7 | |
| 8 namespace ash { | |
| 9 | |
| 10 namespace internal { | |
| 11 | |
| 12 // Possible values of which side of the screen the windows are docked at. | |
| 13 enum DockAlignment { | |
| 14 DOCK_ALIGNMENT_NONE, | |
|
sky
2013/06/12 21:50:17
DOCKED_ALIGNMENT?
varkha
2013/06/13 05:02:11
Done.
| |
| 15 DOCK_ALIGNMENT_LEFT, | |
| 16 DOCK_ALIGNMENT_RIGHT, | |
| 17 DOCK_ALIGNMENT_ANY, | |
| 18 }; | |
| 19 | |
| 20 } // namespace internal | |
| 21 } // namespace ash | |
| 22 | |
| 23 #endif // ASH_WM_DOCK_DOCK_TYPES_H_ | |
| OLD | NEW |