| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * 1999 Waldo Bastian (bastian@kde.org) | 3 * 1999 Waldo Bastian (bastian@kde.org) |
| 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights
reserved. | 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights
reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #ifndef CSSSelector_h | 22 #ifndef SKY_ENGINE_CORE_CSS_CSSSELECTOR_H_ |
| 23 #define CSSSelector_h | 23 #define SKY_ENGINE_CORE_CSS_CSSSELECTOR_H_ |
| 24 | 24 |
| 25 #include "sky/engine/core/dom/QualifiedName.h" | 25 #include "sky/engine/core/dom/QualifiedName.h" |
| 26 #include "sky/engine/core/rendering/style/RenderStyleConstants.h" | 26 #include "sky/engine/core/rendering/style/RenderStyleConstants.h" |
| 27 #include "sky/engine/wtf/OwnPtr.h" | 27 #include "sky/engine/wtf/OwnPtr.h" |
| 28 #include "sky/engine/wtf/PassOwnPtr.h" | 28 #include "sky/engine/wtf/PassOwnPtr.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 class CSSSelectorList; | 31 class CSSSelectorList; |
| 32 | 32 |
| 33 // This class represents a selector for a StyleRule. | 33 // This class represents a selector for a StyleRule. |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 ASSERT(m_match != Tag); | 345 ASSERT(m_match != Tag); |
| 346 if (m_hasRareData) | 346 if (m_hasRareData) |
| 347 return m_data.m_rareData->m_value; | 347 return m_data.m_rareData->m_value; |
| 348 // AtomicString is really just a StringImpl* so the cast below is safe. | 348 // AtomicString is really just a StringImpl* so the cast below is safe. |
| 349 // FIXME: Perhaps call sites could be changed to accept StringImpl? | 349 // FIXME: Perhaps call sites could be changed to accept StringImpl? |
| 350 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); | 350 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); |
| 351 } | 351 } |
| 352 | 352 |
| 353 } // namespace blink | 353 } // namespace blink |
| 354 | 354 |
| 355 #endif // CSSSelector_h | 355 #endif // SKY_ENGINE_CORE_CSS_CSSSELECTOR_H_ |
| OLD | NEW |