Update {virtual,override,final} for content/ to follow C++11 style.
[chromium-blink-merge.git] / ui / compositor / layer_type.h
blob9831916ee7d6c8c3c060dc061ae7904b0ca6d0ee
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_
8 namespace ui {
10 enum LayerType {
11 // A layer that has no onscreen representation (note that its children will
12 // still be drawn, though).
13 LAYER_NOT_DRAWN = 0,
15 // A layer that has a texture.
16 LAYER_TEXTURED = 1,
18 // A layer that's drawn as a single color.
19 LAYER_SOLID_COLOR = 2,
21 // A layer based on the NinePatchLayer class.
22 LAYER_NINE_PATCH = 3,
25 } // namespace ui
27 #endif // UI_COMPOSITOR_LAYER_TYPE_H_