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.
5 #ifndef UI_COMPOSITOR_LAYER_TYPE_H_
6 #define UI_COMPOSITOR_LAYER_TYPE_H_
11 // A layer that has no onscreen representation (note that its children will
12 // still be drawn, though).
15 // A layer that has a texture.
18 // A layer that's drawn as a single color.
19 LAYER_SOLID_COLOR
= 2,
21 // A layer based on the NinePatchLayer class.
27 #endif // UI_COMPOSITOR_LAYER_TYPE_H_