| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 3 * Copyright (C) 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef SVGDocumentExtensions_h | 21 #ifndef SVGDocumentExtensions_h |
| 22 #define SVGDocumentExtensions_h | 22 #define SVGDocumentExtensions_h |
| 23 | 23 |
| 24 #include "core/layout/svg/SVGResourcesCache.h" | 24 #include "core/layout/svg/SVGResourcesCache.h" |
| 25 #include "platform/geometry/FloatPoint.h" | 25 #include "platform/geometry/FloatPoint.h" |
| 26 #include "platform/heap/Handle.h" | 26 #include "platform/heap/Handle.h" |
| 27 #include "wtf/Forward.h" | 27 #include "platform/wtf/Forward.h" |
| 28 #include "wtf/HashSet.h" | 28 #include "platform/wtf/HashSet.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 | 31 |
| 32 class Document; | 32 class Document; |
| 33 class SVGElement; | 33 class SVGElement; |
| 34 class SVGSVGElement; | 34 class SVGSVGElement; |
| 35 class SubtreeLayoutScope; | 35 class SubtreeLayoutScope; |
| 36 | 36 |
| 37 class SVGDocumentExtensions | 37 class SVGDocumentExtensions |
| 38 : public GarbageCollectedFinalized<SVGDocumentExtensions> { | 38 : public GarbageCollectedFinalized<SVGDocumentExtensions> { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 HeapHashSet<Member<SVGSVGElement>> relative_length_svg_roots_; | 84 HeapHashSet<Member<SVGSVGElement>> relative_length_svg_roots_; |
| 85 FloatPoint translate_; | 85 FloatPoint translate_; |
| 86 #if DCHECK_IS_ON() | 86 #if DCHECK_IS_ON() |
| 87 bool in_relative_length_svg_roots_invalidation_ = false; | 87 bool in_relative_length_svg_roots_invalidation_ = false; |
| 88 #endif | 88 #endif |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 } // namespace blink | 91 } // namespace blink |
| 92 | 92 |
| 93 #endif | 93 #endif |
| OLD | NEW |