| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_COMPOSITOR_LAYER_TYPE_H_ | 5 #ifndef UI_COMPOSITOR_LAYER_TYPE_H_ |
| 6 #define UI_COMPOSITOR_LAYER_TYPE_H_ | 6 #define UI_COMPOSITOR_LAYER_TYPE_H_ |
| 7 | 7 |
| 8 namespace ui { | 8 namespace ui { |
| 9 | 9 |
| 10 enum LayerType { | 10 enum LayerType { |
| 11 // A layer that has no onscreen representation (note that its children will | 11 // A layer that has no onscreen representation (note that its children will |
| 12 // still be drawn, though). | 12 // still be drawn, though). |
| 13 LAYER_NOT_DRAWN = 0, | 13 LAYER_NOT_DRAWN = 0, |
| 14 | 14 |
| 15 // A layer that has a texture. | 15 // A layer that has a texture. |
| 16 LAYER_TEXTURED = 1, | 16 LAYER_TEXTURED = 1, |
| 17 | 17 |
| 18 // A layer that's drawn as a single color. | 18 // A layer that's drawn as a single color. |
| 19 LAYER_SOLID_COLOR = 2, | 19 LAYER_SOLID_COLOR = 2, |
| 20 |
| 21 // A layer based on the NinePatchLayer class. |
| 22 LAYER_NINE_PATCH = 3, |
| 20 }; | 23 }; |
| 21 | 24 |
| 22 } // namespace ui | 25 } // namespace ui |
| 23 | 26 |
| 24 #endif // UI_COMPOSITOR_LAYER_TYPE_H_ | 27 #endif // UI_COMPOSITOR_LAYER_TYPE_H_ |
| OLD | NEW |