Chromium Code Reviews| Index: Source/core/rendering/RenderBox.h |
| diff --git a/Source/core/rendering/RenderBox.h b/Source/core/rendering/RenderBox.h |
| index bce0122fd8c94b0ca88d6676eaaaac8533395d2f..b85ef4ea1e338325364add0beb37ec258641f93c 100644 |
| --- a/Source/core/rendering/RenderBox.h |
| +++ b/Source/core/rendering/RenderBox.h |
| @@ -49,7 +49,7 @@ public: |
| // position:static elements that are not flex-items get their z-index coerced to auto. |
| virtual bool requiresLayer() const OVERRIDE { return isRoot() || isPositioned() || createsGroup() || hasClipPath() || hasOverflowClip() || hasTransform() || hasHiddenBackface() || hasReflection() || style()->specifiesColumns() || !style()->hasAutoZIndex() || isFloatingWithShapeOutside(); } |
| - virtual bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect) const OVERRIDE FINAL; |
|
jamesr
2013/05/29 04:59:47
why are you removing the OVERRIDE? FINAL doesn't a
|
| + virtual bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect) const; |
| // Use this with caution! No type checking is done! |
| RenderBox* firstChildBox() const; |