| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
| 5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserv
ed. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserv
ed. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| 11 * version 2 of the License, or (at your option) any later version. | 11 * version 2 of the License, or (at your option) any later version. |
| 12 * | 12 * |
| 13 * This library is distributed in the hope that it will be useful, | 13 * This library is distributed in the hope that it will be useful, |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 * Library General Public License for more details. | 16 * Library General Public License for more details. |
| 17 * | 17 * |
| 18 * You should have received a copy of the GNU Library General Public License | 18 * You should have received a copy of the GNU Library General Public License |
| 19 * along with this library; see the file COPYING.LIB. If not, write to | 19 * along with this library; see the file COPYING.LIB. If not, write to |
| 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #ifndef Attribute_h | 25 #ifndef Attribute_h |
| 26 #define Attribute_h | 26 #define Attribute_h |
| 27 | 27 |
| 28 #include "core/dom/QualifiedName.h" | 28 #include "core/dom/QualifiedName.h" |
| 29 #include "wtf/Allocator.h" |
| 29 | 30 |
| 30 namespace blink { | 31 namespace blink { |
| 31 | 32 |
| 32 // This is the internal representation of an attribute, consisting of a name and | 33 // This is the internal representation of an attribute, consisting of a name and |
| 33 // value. It is distinct from the web-exposed Attr, which also knows of the | 34 // value. It is distinct from the web-exposed Attr, which also knows of the |
| 34 // element to which it attached, if any. | 35 // element to which it attached, if any. |
| 35 class Attribute { | 36 class Attribute { |
| 37 ALLOW_ONLY_INLINE_ALLOCATION(); |
| 36 public: | 38 public: |
| 37 Attribute(const QualifiedName& name, const AtomicString& value) | 39 Attribute(const QualifiedName& name, const AtomicString& value) |
| 38 : m_name(name) | 40 : m_name(name) |
| 39 , m_value(value) | 41 , m_value(value) |
| 40 { | 42 { |
| 41 } | 43 } |
| 42 | 44 |
| 43 // NOTE: The references returned by these functions are only valid for as lo
ng | 45 // NOTE: The references returned by these functions are only valid for as lo
ng |
| 44 // as the Attribute stays in place. For example, calling a function that mut
ates | 46 // as the Attribute stays in place. For example, calling a function that mut
ates |
| 45 // an Element's internal attribute storage may invalidate them. | 47 // an Element's internal attribute storage may invalidate them. |
| (...skipping 28 matching lines...) Expand all Loading... |
| 74 inline bool Attribute::matches(const QualifiedName& qualifiedName) const | 76 inline bool Attribute::matches(const QualifiedName& qualifiedName) const |
| 75 { | 77 { |
| 76 if (qualifiedName.localName() != localName()) | 78 if (qualifiedName.localName() != localName()) |
| 77 return false; | 79 return false; |
| 78 return qualifiedName.prefix() == starAtom || qualifiedName.namespaceURI() ==
namespaceURI(); | 80 return qualifiedName.prefix() == starAtom || qualifiedName.namespaceURI() ==
namespaceURI(); |
| 79 } | 81 } |
| 80 | 82 |
| 81 } // namespace blink | 83 } // namespace blink |
| 82 | 84 |
| 83 #endif // Attribute_h | 85 #endif // Attribute_h |
| OLD | NEW |