| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007 Rob Buis | 2 * Copyright (C) 2006, 2007 Rob Buis |
| 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 |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
| 15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
| 18 * | 18 * |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef StyleElement_h | 21 #ifndef StyleElement_h |
| 22 #define StyleElement_h | 22 #define StyleElement_h |
| 23 | 23 |
| 24 #include "core/css/CSSStyleSheet.h" | 24 #include "core/css/CSSStyleSheet.h" |
| 25 #include "core/dom/StyleEngineContext.h" | 25 #include "core/dom/StyleEngineContext.h" |
| 26 #include "wtf/text/TextPosition.h" | 26 #include "platform/wtf/text/TextPosition.h" |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| 29 | 29 |
| 30 class ContainerNode; | 30 class ContainerNode; |
| 31 class Document; | 31 class Document; |
| 32 class Element; | 32 class Element; |
| 33 | 33 |
| 34 class CORE_EXPORT StyleElement : public GarbageCollectedMixin { | 34 class CORE_EXPORT StyleElement : public GarbageCollectedMixin { |
| 35 public: | 35 public: |
| 36 StyleElement(Document*, bool created_by_parser); | 36 StyleElement(Document*, bool created_by_parser); |
| (...skipping 27 matching lines...) Expand all Loading... |
| 64 bool created_by_parser_ : 1; | 64 bool created_by_parser_ : 1; |
| 65 bool loading_ : 1; | 65 bool loading_ : 1; |
| 66 bool registered_as_candidate_ : 1; | 66 bool registered_as_candidate_ : 1; |
| 67 TextPosition start_position_; | 67 TextPosition start_position_; |
| 68 StyleEngineContext style_engine_context_; | 68 StyleEngineContext style_engine_context_; |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace blink | 71 } // namespace blink |
| 72 | 72 |
| 73 #endif | 73 #endif |
| OLD | NEW |