| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 void appendString(const CString&); | 88 void appendString(const CString&); |
| 89 void appendString(const String&); | 89 void appendString(const String&); |
| 90 void appendBlob(PassRefPtrWillBeRawPtr<Blob>, const String& filename); | 90 void appendBlob(PassRefPtrWillBeRawPtr<Blob>, const String& filename); |
| 91 | 91 |
| 92 WTF::TextEncoding m_encoding; | 92 WTF::TextEncoding m_encoding; |
| 93 WillBeHeapVector<Item> m_items; | 93 WillBeHeapVector<Item> m_items; |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 } // namespace WebCore | 96 } // namespace WebCore |
| 97 | 97 |
| 98 namespace WTF { | 98 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(WebCore::FormDataList::Item); |
| 99 template <> struct VectorTraits<WebCore::FormDataList::Item> : VectorTraitsBase<
WebCore::FormDataList::Item> { | |
| 100 static const bool canInitializeWithMemset = true; | |
| 101 }; | |
| 102 | |
| 103 } | |
| 104 | 99 |
| 105 #endif // FormDataList_h | 100 #endif // FormDataList_h |
| OLD | NEW |