| 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..6dc2ff58bc680cf7c654d40ff4cdf814b708afed
|
| --- /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 DockedAlignment {
|
| + DOCKED_ALIGNMENT_NONE,
|
| + DOCKED_ALIGNMENT_LEFT,
|
| + DOCKED_ALIGNMENT_RIGHT,
|
| + DOCKED_ALIGNMENT_ANY,
|
| +};
|
| +
|
| +} // namespace internal
|
| +} // namespace ash
|
| +
|
| +#endif // ASH_WM_DOCK_DOCK_TYPES_H_
|
|
|