| 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, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef CSSValueList_h | 21 #ifndef CSSValueList_h |
| 22 #define CSSValueList_h | 22 #define CSSValueList_h |
| 23 | 23 |
| 24 #include "core/css/CSSValue.h" | 24 #include "core/css/CSSValue.h" |
| 25 #include "wtf/PassRefPtr.h" | 25 #include "wtf/PassRefPtr.h" |
| 26 #include "wtf/Vector.h" | 26 #include "wtf/Vector.h" |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| 29 | 29 |
| 30 class CSSParserValueList; | |
| 31 | |
| 32 class CSSValueList : public CSSValue { | 30 class CSSValueList : public CSSValue { |
| 33 public: | 31 public: |
| 34 static PassRefPtrWillBeRawPtr<CSSValueList> createCommaSeparated() | 32 static PassRefPtrWillBeRawPtr<CSSValueList> createCommaSeparated() |
| 35 { | 33 { |
| 36 return adoptRefWillBeNoop(new CSSValueList(CommaSeparator)); | 34 return adoptRefWillBeNoop(new CSSValueList(CommaSeparator)); |
| 37 } | 35 } |
| 38 static PassRefPtrWillBeRawPtr<CSSValueList> createSpaceSeparated() | 36 static PassRefPtrWillBeRawPtr<CSSValueList> createSpaceSeparated() |
| 39 { | 37 { |
| 40 return adoptRefWillBeNoop(new CSSValueList(SpaceSeparator)); | 38 return adoptRefWillBeNoop(new CSSValueList(SpaceSeparator)); |
| 41 } | 39 } |
| 42 static PassRefPtrWillBeRawPtr<CSSValueList> createSlashSeparated() | 40 static PassRefPtrWillBeRawPtr<CSSValueList> createSlashSeparated() |
| 43 { | 41 { |
| 44 return adoptRefWillBeNoop(new CSSValueList(SlashSeparator)); | 42 return adoptRefWillBeNoop(new CSSValueList(SlashSeparator)); |
| 45 } | 43 } |
| 46 static PassRefPtrWillBeRawPtr<CSSValueList> createFromParserValueList(CSSPar
serValueList* list) | |
| 47 { | |
| 48 return adoptRefWillBeNoop(new CSSValueList(list)); | |
| 49 } | |
| 50 | 44 |
| 51 size_t length() const { return m_values.size(); } | 45 size_t length() const { return m_values.size(); } |
| 52 CSSValue* item(size_t index) { return m_values[index].get(); } | 46 CSSValue* item(size_t index) { return m_values[index].get(); } |
| 53 const CSSValue* item(size_t index) const { return m_values[index].get(); } | 47 const CSSValue* item(size_t index) const { return m_values[index].get(); } |
| 54 CSSValue* itemWithBoundsCheck(size_t index) { return index < m_values.size()
? m_values[index].get() : 0; } | 48 CSSValue* itemWithBoundsCheck(size_t index) { return index < m_values.size()
? m_values[index].get() : 0; } |
| 55 | 49 |
| 56 void append(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.append(value)
; } | 50 void append(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.append(value)
; } |
| 57 void prepend(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.prepend(valu
e); } | 51 void prepend(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.prepend(valu
e); } |
| 58 bool removeAll(CSSValue*); | 52 bool removeAll(CSSValue*); |
| 59 bool hasValue(CSSValue*) const; | 53 bool hasValue(CSSValue*) const; |
| 60 PassRefPtrWillBeRawPtr<CSSValueList> copy(); | 54 PassRefPtrWillBeRawPtr<CSSValueList> copy(); |
| 61 | 55 |
| 62 String customCSSText(CSSTextFormattingFlags = QuoteCSSStringIfNeeded) const; | 56 String customCSSText(CSSTextFormattingFlags = QuoteCSSStringIfNeeded) const; |
| 63 bool equals(const CSSValueList&) const; | 57 bool equals(const CSSValueList&) const; |
| 64 bool equals(const CSSValue&) const; | 58 bool equals(const CSSValue&) const; |
| 65 | 59 |
| 66 bool hasFailedOrCanceledSubresources() const; | 60 bool hasFailedOrCanceledSubresources() const; |
| 67 | 61 |
| 68 PassRefPtrWillBeRawPtr<CSSValueList> cloneForCSSOM() const; | 62 PassRefPtrWillBeRawPtr<CSSValueList> cloneForCSSOM() const; |
| 69 | 63 |
| 70 void traceAfterDispatch(Visitor*); | 64 void traceAfterDispatch(Visitor*); |
| 71 | 65 |
| 72 protected: | 66 protected: |
| 73 CSSValueList(ClassType, ValueListSeparator); | 67 CSSValueList(ClassType, ValueListSeparator); |
| 74 CSSValueList(const CSSValueList& cloneFrom); | 68 CSSValueList(const CSSValueList& cloneFrom); |
| 75 | 69 |
| 76 private: | 70 private: |
| 77 explicit CSSValueList(ValueListSeparator); | 71 explicit CSSValueList(ValueListSeparator); |
| 78 explicit CSSValueList(CSSParserValueList*); | |
| 79 | 72 |
| 80 WillBeHeapVector<RefPtrWillBeMember<CSSValue>, 4> m_values; | 73 WillBeHeapVector<RefPtrWillBeMember<CSSValue>, 4> m_values; |
| 81 }; | 74 }; |
| 82 | 75 |
| 83 DEFINE_CSS_VALUE_TYPE_CASTS(CSSValueList, isValueList()); | 76 DEFINE_CSS_VALUE_TYPE_CASTS(CSSValueList, isValueList()); |
| 84 | 77 |
| 85 // Objects of this class are intended to be stack-allocated and scoped to a sing
le function. | 78 // Objects of this class are intended to be stack-allocated and scoped to a sing
le function. |
| 86 // Please take care not to pass these around as they do hold onto a raw pointer. | 79 // Please take care not to pass these around as they do hold onto a raw pointer. |
| 87 class CSSValueListInspector { | 80 class CSSValueListInspector { |
| 88 STACK_ALLOCATED(); | 81 STACK_ALLOCATED(); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 109 void advance() { m_position++; ASSERT(m_position <= m_inspector.length());} | 102 void advance() { m_position++; ASSERT(m_position <= m_inspector.length());} |
| 110 size_t index() const { return m_position; } | 103 size_t index() const { return m_position; } |
| 111 private: | 104 private: |
| 112 CSSValueListInspector m_inspector; | 105 CSSValueListInspector m_inspector; |
| 113 size_t m_position; | 106 size_t m_position; |
| 114 }; | 107 }; |
| 115 | 108 |
| 116 } // namespace blink | 109 } // namespace blink |
| 117 | 110 |
| 118 #endif // CSSValueList_h | 111 #endif // CSSValueList_h |
| OLD | NEW |