Chromium Code Reviews| Index: third_party/WebKit/Source/core/style/FillLayer.h |
| diff --git a/third_party/WebKit/Source/core/style/FillLayer.h b/third_party/WebKit/Source/core/style/FillLayer.h |
| index 90e57fc190bed9cd70efb55baadde8ff9853beee..ab21981fca7fcd85b9a448870de69a67b7117c3f 100644 |
| --- a/third_party/WebKit/Source/core/style/FillLayer.h |
| +++ b/third_party/WebKit/Source/core/style/FillLayer.h |
| @@ -175,7 +175,7 @@ public: |
| return m_next ? m_next->hasFixedImage() : false; |
| } |
| - bool hasOpaqueImage(const LayoutObject*) const; |
| + bool imageOccludesNextLayers(const LayoutObject&) const; |
|
Stephen Chennney
2016/03/16 20:54:16
Renamed to match the clipOccludesNextLayers method
|
| bool hasRepeatXY() const; |
| bool clipOccludesNextLayers() const; |
| @@ -211,6 +211,8 @@ private: |
| FillLayer() { } |
| + bool imageIsOpaqueAndTilesLayer(const LayoutObject&) const; |
| + |
| FillLayer* m_next; |
| RefPtrWillBePersistent<StyleImage> m_image; |