| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 { | 45 { |
| 46 return adoptRefWillBeNoop(new CSSValueList(SlashSeparator)); | 46 return adoptRefWillBeNoop(new CSSValueList(SlashSeparator)); |
| 47 } | 47 } |
| 48 | 48 |
| 49 iterator begin() { return m_values.begin(); } | 49 iterator begin() { return m_values.begin(); } |
| 50 iterator end() { return m_values.end(); } | 50 iterator end() { return m_values.end(); } |
| 51 const_iterator begin() const { return m_values.begin(); } | 51 const_iterator begin() const { return m_values.begin(); } |
| 52 const_iterator end() const { return m_values.end(); } | 52 const_iterator end() const { return m_values.end(); } |
| 53 | 53 |
| 54 size_t length() const { return m_values.size(); } | 54 size_t length() const { return m_values.size(); } |
| 55 CSSValue item(size_t index) { return m_values[index]; } | 55 const CSSValue& item(size_t index) const { return m_values[index]; } |
| 56 const CSSValue item(size_t index) const { return m_values[index]; } | |
| 57 NullableCSSValue itemWithBoundsCheck(size_t index) { return index < m_values
.size() ? NullableCSSValue(m_values[index]) : nullptr; } | |
| 58 const NullableCSSValue itemWithBoundsCheck(size_t index) const { return inde
x < m_values.size() ? NullableCSSValue(m_values[index]) : nullptr; } | 56 const NullableCSSValue itemWithBoundsCheck(size_t index) const { return inde
x < m_values.size() ? NullableCSSValue(m_values[index]) : nullptr; } |
| 59 | 57 |
| 60 void append(CSSValue value) { m_values.append(value); } | 58 void append(const CSSValue& value) { m_values.append(value); } |
| 61 void prepend(CSSValue value) { m_values.prepend(value); } | 59 void prepend(const CSSValue& value) { m_values.prepend(value); } |
| 62 bool removeAll(CSSValue); | 60 bool removeAll(const CSSValue&); |
| 63 bool hasValue(CSSValue) const; | 61 bool hasValue(const CSSValue&) const; |
| 64 PassRefPtrWillBeRawPtr<CSSValueList> copy(); | 62 PassRefPtrWillBeRawPtr<CSSValueList> copy(); |
| 65 | 63 |
| 66 String customCSSText() const; | 64 String customCSSText() const; |
| 67 bool equals(const CSSValueList&) const; | 65 bool equals(const CSSValueList&) const; |
| 68 | 66 |
| 69 bool hasFailedOrCanceledSubresources() const; | 67 bool hasFailedOrCanceledSubresources() const; |
| 70 | 68 |
| 71 DECLARE_TRACE_AFTER_DISPATCH(); | 69 DECLARE_TRACE_AFTER_DISPATCH(); |
| 72 | 70 |
| 73 protected: | 71 protected: |
| 74 CSSValueList(ClassType, ValueListSeparator); | 72 CSSValueList(ClassType, ValueListSeparator); |
| 75 | 73 |
| 76 private: | 74 private: |
| 77 explicit CSSValueList(ValueListSeparator); | 75 explicit CSSValueList(ValueListSeparator); |
| 78 | 76 |
| 79 WillBeHeapVector<CSSValue, 4> m_values; | 77 WillBeHeapVector<CSSValue, 4> m_values; |
| 80 }; | 78 }; |
| 81 | 79 |
| 82 DEFINE_CSS_VALUE_TYPE_CASTS(CSSValueList, isValueList()); | 80 DEFINE_CSS_VALUE_TYPE_CASTS(CSSValueList, isValueList()); |
| 83 | 81 |
| 84 } // namespace blink | 82 } // namespace blink |
| 85 | 83 |
| 86 #endif // CSSValueList_h | 84 #endif // CSSValueList_h |
| OLD | NEW |