layer_type.h revision 116680a4aac90f2aa7413d9095a592090648e557
1// Copyright (c) 2012 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 UI_COMPOSITOR_LAYER_TYPE_H_
6#define UI_COMPOSITOR_LAYER_TYPE_H_
7
8namespace ui {
9
10enum LayerType {
11  // A layer that has no onscreen representation (note that its children will
12  // still be drawn, though).
13  LAYER_NOT_DRAWN = 0,
14
15  // A layer that has a texture.
16  LAYER_TEXTURED = 1,
17
18  // A layer that's drawn as a single color.
19  LAYER_SOLID_COLOR = 2,
20
21  // A layer based on the NinePatchLayer class.
22  LAYER_NINE_PATCH = 3,
23};
24
25}  // namespace ui
26
27#endif  // UI_COMPOSITOR_LAYER_TYPE_H_
28