| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999 Lars Knoll (knoll@kde.org) | 2 * (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Gunnstein Lye (gunnstein@netcom.no) | 3 * (C) 2000 Gunnstein Lye (gunnstein@netcom.no) |
| 4 * (C) 2000 Frederik Holljen (frederik.holljen@hig.no) | 4 * (C) 2000 Frederik Holljen (frederik.holljen@hig.no) |
| 5 * (C) 2001 Peter Kelly (pmk@post.com) | 5 * (C) 2001 Peter Kelly (pmk@post.com) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All |
| 7 * rights reserved. | 7 * rights reserved. |
| 8 * Copyright (C) 2011 Motorola Mobility. All rights reserved. | 8 * Copyright (C) 2011 Motorola Mobility. All rights reserved. |
| 9 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #include "core/editing/serializers/Serialization.h" | 46 #include "core/editing/serializers/Serialization.h" |
| 47 #include "core/events/ScopedEventQueue.h" | 47 #include "core/events/ScopedEventQueue.h" |
| 48 #include "core/frame/Settings.h" | 48 #include "core/frame/Settings.h" |
| 49 #include "core/html/HTMLBodyElement.h" | 49 #include "core/html/HTMLBodyElement.h" |
| 50 #include "core/html/HTMLElement.h" | 50 #include "core/html/HTMLElement.h" |
| 51 #include "core/layout/LayoutObject.h" | 51 #include "core/layout/LayoutObject.h" |
| 52 #include "core/layout/LayoutText.h" | 52 #include "core/layout/LayoutText.h" |
| 53 #include "core/svg/SVGSVGElement.h" | 53 #include "core/svg/SVGSVGElement.h" |
| 54 #include "platform/EventDispatchForbiddenScope.h" | 54 #include "platform/EventDispatchForbiddenScope.h" |
| 55 #include "platform/geometry/FloatQuad.h" | 55 #include "platform/geometry/FloatQuad.h" |
| 56 #include "wtf/text/CString.h" | 56 #include "platform/wtf/text/CString.h" |
| 57 #include "wtf/text/StringBuilder.h" | 57 #include "platform/wtf/text/StringBuilder.h" |
| 58 #ifndef NDEBUG | 58 #ifndef NDEBUG |
| 59 #include <stdio.h> | 59 #include <stdio.h> |
| 60 #endif | 60 #endif |
| 61 | 61 |
| 62 namespace blink { | 62 namespace blink { |
| 63 | 63 |
| 64 class RangeUpdateScope { | 64 class RangeUpdateScope { |
| 65 STACK_ALLOCATED(); | 65 STACK_ALLOCATED(); |
| 66 explicit RangeUpdateScope(Range* range) { | 66 explicit RangeUpdateScope(Range* range) { |
| 67 DCHECK(range); | 67 DCHECK(range); |
| (...skipping 1758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1826 .Data() | 1826 .Data() |
| 1827 << "start offset: " << range->startOffset() | 1827 << "start offset: " << range->startOffset() |
| 1828 << ", end offset: " << range->endOffset(); | 1828 << ", end offset: " << range->endOffset(); |
| 1829 } else { | 1829 } else { |
| 1830 LOG(INFO) << "Cannot show tree if range is null, or if boundary points are " | 1830 LOG(INFO) << "Cannot show tree if range is null, or if boundary points are " |
| 1831 "invalid."; | 1831 "invalid."; |
| 1832 } | 1832 } |
| 1833 } | 1833 } |
| 1834 | 1834 |
| 1835 #endif | 1835 #endif |
| OLD | NEW |