| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef LayoutTreeAsText_h | 26 #ifndef LayoutTreeAsText_h |
| 27 #define LayoutTreeAsText_h | 27 #define LayoutTreeAsText_h |
| 28 | 28 |
| 29 #include "core/CoreExport.h" | 29 #include "core/CoreExport.h" |
| 30 #include "platform/text/TextStream.h" | 30 #include "platform/text/TextStream.h" |
| 31 #include "wtf/Allocator.h" | 31 #include "platform/wtf/Allocator.h" |
| 32 #include "wtf/Forward.h" | 32 #include "platform/wtf/Forward.h" |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 class Color; | 36 class Color; |
| 37 class PaintLayer; | 37 class PaintLayer; |
| 38 class Element; | 38 class Element; |
| 39 class LayoutRect; | 39 class LayoutRect; |
| 40 class LocalFrame; | 40 class LocalFrame; |
| 41 class LayoutBlockFlow; | 41 class LayoutBlockFlow; |
| 42 class LayoutObject; | 42 class LayoutObject; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 | 104 |
| 105 CORE_EXPORT String CounterValueForElement(Element*); | 105 CORE_EXPORT String CounterValueForElement(Element*); |
| 106 | 106 |
| 107 CORE_EXPORT String MarkerTextForListItem(Element*); | 107 CORE_EXPORT String MarkerTextForListItem(Element*); |
| 108 | 108 |
| 109 TextStream& operator<<(TextStream&, const Color&); | 109 TextStream& operator<<(TextStream&, const Color&); |
| 110 | 110 |
| 111 } // namespace blink | 111 } // namespace blink |
| 112 | 112 |
| 113 #endif // LayoutTreeAsText_h | 113 #endif // LayoutTreeAsText_h |
| OLD | NEW |