| 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 DockedAlignment { |
| 14 DOCKED_ALIGNMENT_NONE, |
| 15 DOCKED_ALIGNMENT_LEFT, |
| 16 DOCKED_ALIGNMENT_RIGHT, |
| 17 DOCKED_ALIGNMENT_ANY, |
| 18 }; |
| 19 |
| 20 } // namespace internal |
| 21 } // namespace ash |
| 22 |
| 23 #endif // ASH_WM_DOCK_DOCK_TYPES_H_ |
| OLD | NEW |