| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 class CSSBorderImageSliceValue : public CSSValue { | 35 class CSSBorderImageSliceValue : public CSSValue { |
| 36 public: | 36 public: |
| 37 static CSSBorderImageSliceValue* create(CSSQuadValue* slices, bool fill) { | 37 static CSSBorderImageSliceValue* create(CSSQuadValue* slices, bool fill) { |
| 38 return new CSSBorderImageSliceValue(slices, fill); | 38 return new CSSBorderImageSliceValue(slices, fill); |
| 39 } | 39 } |
| 40 | 40 |
| 41 String customCSSText() const; | 41 String customCSSText() const; |
| 42 | 42 |
| 43 // TODO(sashab): Change this to a quad of CSSPrimitiveValues, or add separate |
| 44 // methods for topSlice(), leftSlice(), etc. |
| 43 const CSSQuadValue& slices() const { return *m_slices; } | 45 const CSSQuadValue& slices() const { return *m_slices; } |
| 44 bool fill() const { return m_fill; } | 46 bool fill() const { return m_fill; } |
| 45 | 47 |
| 46 bool equals(const CSSBorderImageSliceValue&) const; | 48 bool equals(const CSSBorderImageSliceValue&) const; |
| 47 | 49 |
| 48 DECLARE_TRACE_AFTER_DISPATCH(); | 50 DECLARE_TRACE_AFTER_DISPATCH(); |
| 49 | 51 |
| 50 private: | 52 private: |
| 51 CSSBorderImageSliceValue(CSSQuadValue* slices, bool fill); | 53 CSSBorderImageSliceValue(CSSQuadValue* slices, bool fill); |
| 52 | 54 |
| 53 // These four values are used to make "cuts" in the border image. They can be
numbers | 55 // These four values are used to make "cuts" in the border image. They can be
numbers |
| 54 // or percentages. | 56 // or percentages. |
| 55 Member<CSSQuadValue> m_slices; | 57 Member<CSSQuadValue> m_slices; |
| 56 bool m_fill; | 58 bool m_fill; |
| 57 }; | 59 }; |
| 58 | 60 |
| 59 DEFINE_CSS_VALUE_TYPE_CASTS(CSSBorderImageSliceValue, | 61 DEFINE_CSS_VALUE_TYPE_CASTS(CSSBorderImageSliceValue, |
| 60 isBorderImageSliceValue()); | 62 isBorderImageSliceValue()); |
| 61 | 63 |
| 62 } // namespace blink | 64 } // namespace blink |
| 63 | 65 |
| 64 #endif // CSSBorderImageSliceValue_h | 66 #endif // CSSBorderImageSliceValue_h |
| OLD | NEW |