blob: 85ee9c0fdedec178d348daaf1974cd6fa169d380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// 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_SHELF_AUTO_HIDE_BEHAVIOR_H_
#define ASH_WM_SHELF_AUTO_HIDE_BEHAVIOR_H_
#pragma once
// TODO(sky): rename this file to shelf_types.
namespace ash {
enum ShelfAlignment {
SHELF_ALIGNMENT_BOTTOM,
SHELF_ALIGNMENT_LEFT,
SHELF_ALIGNMENT_RIGHT,
};
enum ShelfAutoHideBehavior {
// The default; maximized windows trigger an auto-hide.
SHELF_AUTO_HIDE_BEHAVIOR_DEFAULT,
// Always auto-hide.
SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS,
// Never auto-hide.
SHELF_AUTO_HIDE_BEHAVIOR_NEVER,
};
} // namespace ash
#endif // ASH_WM_SHELF_AUTO_HIDE_BEHAVIOR_H_
|