| 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_SHELF_WM_SHELF_UTIL_H_ | |
| 6 #define ASH_SHELF_WM_SHELF_UTIL_H_ | |
| 7 | |
| 8 #include "ash/ash_export.h" | |
| 9 #include "ash/public/cpp/shelf_types.h" | |
| 10 | |
| 11 namespace ash { | |
| 12 | |
| 13 // Returns true if the shelf |alignment| is horizontal. | |
| 14 // TODO(jamescook): Remove this in favor of WmShelf::IsHorizontalAlignment(). | |
| 15 ASH_EXPORT bool IsHorizontalAlignment(ShelfAlignment alignment); | |
| 16 | |
| 17 } // namespace ash | |
| 18 | |
| 19 #endif // ASH_SHELF_WM_SHELF_UTIL_H_ | |
| OLD | NEW |