| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2014 Apple Inc. All rights reserved. | 3 * Copyright (C) 2014 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2014 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2014 Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 8 * met: | 8 * met: |
| 9 * | 9 * |
| 10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 */ | 31 */ |
| 32 | 32 |
| 33 #ifndef AttributeCollection_h | 33 #ifndef AttributeCollection_h |
| 34 #define AttributeCollection_h | 34 #define AttributeCollection_h |
| 35 | 35 |
| 36 #include "core/dom/Attribute.h" | 36 #include "core/dom/Attribute.h" |
| 37 #include "wtf/Allocator.h" | 37 #include "platform/wtf/Allocator.h" |
| 38 #include "wtf/Vector.h" | 38 #include "platform/wtf/Vector.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 template <typename Container, typename ContainerMemberType = Container> | 42 template <typename Container, typename ContainerMemberType = Container> |
| 43 class AttributeCollectionGeneric { | 43 class AttributeCollectionGeneric { |
| 44 STACK_ALLOCATED(); | 44 STACK_ALLOCATED(); |
| 45 | 45 |
| 46 public: | 46 public: |
| 47 using ValueType = typename Container::ValueType; | 47 using ValueType = typename Container::ValueType; |
| 48 using iterator = ValueType*; | 48 using iterator = ValueType*; |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 should_ignore_attribute_case)) | 215 should_ignore_attribute_case)) |
| 216 return index; | 216 return index; |
| 217 } | 217 } |
| 218 } | 218 } |
| 219 return kNotFound; | 219 return kNotFound; |
| 220 } | 220 } |
| 221 | 221 |
| 222 } // namespace blink | 222 } // namespace blink |
| 223 | 223 |
| 224 #endif // AttributeCollection_h | 224 #endif // AttributeCollection_h |
| OLD | NEW |