Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Side by Side Diff: sky/engine/core/rendering/RenderLayerModelObject.h

Issue 856563006: Remove background obscuration checks. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/engine/core/rendering/RenderLayer.cpp ('k') | sky/engine/core/rendering/RenderObject.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 bool hasSelfPaintingLayer() const; 50 bool hasSelfPaintingLayer() const;
51 RenderLayer* layer() const { return m_layer.get(); } 51 RenderLayer* layer() const { return m_layer.get(); }
52 ScrollableArea* scrollableArea() const; 52 ScrollableArea* scrollableArea() const;
53 53
54 virtual void styleWillChange(StyleDifference, const RenderStyle& newStyle) o verride; 54 virtual void styleWillChange(StyleDifference, const RenderStyle& newStyle) o verride;
55 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) ov erride; 55 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) ov erride;
56 virtual void updateFromStyle() { } 56 virtual void updateFromStyle() { }
57 57
58 virtual LayerType layerTypeRequired() const = 0; 58 virtual LayerType layerTypeRequired() const = 0;
59 59
60 // Returns true if the background is painted opaque in the given rect.
61 // The query rect is given in local coordinate system.
62 virtual bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const { re turn false; }
63
64 // This is null for anonymous renderers. 60 // This is null for anonymous renderers.
65 ContainerNode* node() const { return toContainerNode(RenderObject::node()); } 61 ContainerNode* node() const { return toContainerNode(RenderObject::node()); }
66 protected: 62 protected:
67 void createLayer(LayerType); 63 void createLayer(LayerType);
68 64
69 virtual void willBeDestroyed() override; 65 virtual void willBeDestroyed() override;
70 private: 66 private:
71 virtual bool isLayerModelObject() const override final { return true; } 67 virtual bool isLayerModelObject() const override final { return true; }
72 68
73 OwnPtr<RenderLayer> m_layer; 69 OwnPtr<RenderLayer> m_layer;
74 70
75 // Used to store state between styleWillChange and styleDidChange 71 // Used to store state between styleWillChange and styleDidChange
76 static bool s_wasFloating; 72 static bool s_wasFloating;
77 }; 73 };
78 74
79 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderLayerModelObject, isLayerModelObject()); 75 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderLayerModelObject, isLayerModelObject());
80 76
81 } // namespace blink 77 } // namespace blink
82 78
83 #endif // SKY_ENGINE_CORE_RENDERING_RENDERLAYERMODELOBJECT_H_ 79 #endif // SKY_ENGINE_CORE_RENDERING_RENDERLAYERMODELOBJECT_H_
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/RenderLayer.cpp ('k') | sky/engine/core/rendering/RenderObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698