| Index: third_party/WebKit/Source/core/style/ComputedStyle.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| index 77a3e506ed808ccb2e383dff2070fb6667c8ba65..214a69b785220990045c15027ae69fe4182c94a9 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -2910,19 +2910,19 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
|
|
|
| void SetBorderImageSlicesFill(bool);
|
| const BorderData& Border() const { return surround_data_->border_; }
|
| - const BorderValue BorderLeft() const {
|
| + BorderValue BorderLeft() const {
|
| return BorderValue(surround_data_->border_.Left(), BorderLeftColor(),
|
| BorderLeftWidth());
|
| }
|
| - const BorderValue BorderRight() const {
|
| + BorderValue BorderRight() const {
|
| return BorderValue(surround_data_->border_.Right(), BorderRightColor(),
|
| BorderRightWidth());
|
| }
|
| - const BorderValue BorderTop() const {
|
| + BorderValue BorderTop() const {
|
| return BorderValue(surround_data_->border_.Top(), BorderTopColor(),
|
| BorderTopWidth());
|
| }
|
| - const BorderValue BorderBottom() const {
|
| + BorderValue BorderBottom() const {
|
| return BorderValue(surround_data_->border_.Bottom(), BorderBottomColor(),
|
| BorderBottomWidth());
|
| }
|
| @@ -2932,10 +2932,10 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
|
| BorderWidthEquals(BorderRightWidth(), o.BorderRightWidth()) &&
|
| BorderWidthEquals(BorderBottomWidth(), o.BorderBottomWidth());
|
| }
|
| - const BorderValue BorderBefore() const;
|
| - const BorderValue BorderAfter() const;
|
| - const BorderValue BorderStart() const;
|
| - const BorderValue BorderEnd() const;
|
| + BorderValue BorderBefore() const;
|
| + BorderValue BorderAfter() const;
|
| + BorderValue BorderStart() const;
|
| + BorderValue BorderEnd() const;
|
| float BorderAfterWidth() const;
|
| float BorderBeforeWidth() const;
|
| float BorderEndWidth() const;
|
|
|