Chromium Code Reviews| Index: ash/wm/dock/dock_types.h |
| diff --git a/ash/wm/dock/dock_types.h b/ash/wm/dock/dock_types.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f9d229e98f964cb5450f930a9ded923ca306986a |
| --- /dev/null |
| +++ b/ash/wm/dock/dock_types.h |
| @@ -0,0 +1,23 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef ASH_WM_DOCK_DOCK_TYPES_H_ |
| +#define ASH_WM_DOCK_DOCK_TYPES_H_ |
| + |
| +namespace ash { |
| + |
| +namespace internal { |
| + |
| +// Possible values of which side of the screen the windows are docked at. |
| +enum DockAlignment { |
| + DOCK_ALIGNMENT_NONE, |
|
sky
2013/06/12 21:50:17
DOCKED_ALIGNMENT?
varkha
2013/06/13 05:02:11
Done.
|
| + DOCK_ALIGNMENT_LEFT, |
| + DOCK_ALIGNMENT_RIGHT, |
| + DOCK_ALIGNMENT_ANY, |
| +}; |
| + |
| +} // namespace internal |
| +} // namespace ash |
| + |
| +#endif // ASH_WM_DOCK_DOCK_TYPES_H_ |