Chromium Code Reviews| Index: ash/wm/workspace/maximize_bubble_frame_state.h |
| diff --git a/ash/wm/workspace/maximize_bubble_frame_state.h b/ash/wm/workspace/maximize_bubble_frame_state.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a5cf695e629891bbd293f7354f29ad965aa973d5 |
| --- /dev/null |
| +++ b/ash/wm/workspace/maximize_bubble_frame_state.h |
| @@ -0,0 +1,20 @@ |
| +// Copyright (c) 2012 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_WORKSPACE_MAXIMIZE_BUBBLE_FRAME_STATE_H_ |
| +#define ASH_WM_WORKSPACE_MAXIMIZE_BUBBLE_FRAME_STATE_H_ |
| + |
| +namespace ash { |
| + |
| +// These are the types of maximization we know. |
| +enum MaximizeBubbleFrameState { |
| + FRAME_STATE_NONE = 0, |
| + FRAME_STATE_FULL = 1, |
|
sky
2012/08/29 17:29:20
At a minimum document that FULL == window is reall
Mr4D (OOO till 08-26)
2012/08/29 18:57:34
I thought that was obvious. But added.
|
| + FRAME_STATE_SNAP_LEFT = 2, |
| + FRAME_STATE_SNAP_RIGHT = 3 |
| +}; |
| + |
| +} // namespace views |
| + |
| +#endif // ASH_WM_WORKSPACE_MAXIMIZE_BUBBLE_FRAME_STATE_H_ |