| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2006, 2007, 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2010, 2012 Google Inc. All rights reserved. | 5 * Copyright (C) 2010, 2012 Google Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #include "sky/engine/core/rendering/RenderObject.h" | 26 #include "sky/engine/core/rendering/RenderObject.h" |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| 29 | 29 |
| 30 class RenderLayer; | 30 class RenderLayer; |
| 31 | 31 |
| 32 enum LayerType { | 32 enum LayerType { |
| 33 NoLayer, | 33 NoLayer, |
| 34 NormalLayer, | 34 NormalLayer, |
| 35 // A forced or overflow clip layer is required for bookkeeping purposes, | 35 // An overflow clip layer is required for bookkeeping purposes, |
| 36 // but does not force a layer to be self painting. | 36 // but does not force a layer to be self painting. |
| 37 OverflowClipLayer, | 37 OverflowClipLayer, |
| 38 ForcedLayer | |
| 39 }; | 38 }; |
| 40 | 39 |
| 41 class RenderLayerModelObject : public RenderObject { | 40 class RenderLayerModelObject : public RenderObject { |
| 42 public: | 41 public: |
| 43 explicit RenderLayerModelObject(ContainerNode*); | 42 explicit RenderLayerModelObject(ContainerNode*); |
| 44 virtual ~RenderLayerModelObject(); | 43 virtual ~RenderLayerModelObject(); |
| 45 | 44 |
| 46 // This is the only way layers should ever be destroyed. | 45 // This is the only way layers should ever be destroyed. |
| 47 void destroyLayer(); | 46 void destroyLayer(); |
| 48 | 47 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 68 | 67 |
| 69 // Used to store state between styleWillChange and styleDidChange | 68 // Used to store state between styleWillChange and styleDidChange |
| 70 static bool s_wasFloating; | 69 static bool s_wasFloating; |
| 71 }; | 70 }; |
| 72 | 71 |
| 73 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderLayerModelObject, isLayerModelObject()); | 72 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderLayerModelObject, isLayerModelObject()); |
| 74 | 73 |
| 75 } // namespace blink | 74 } // namespace blink |
| 76 | 75 |
| 77 #endif // SKY_ENGINE_CORE_RENDERING_RENDERLAYERMODELOBJECT_H_ | 76 #endif // SKY_ENGINE_CORE_RENDERING_RENDERLAYERMODELOBJECT_H_ |
| OLD | NEW |