Changeset 218976 in webkit
- Timestamp:
- Jun 29, 2017, 5:55:34 PM (8 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r218973 r218976 1 2017-06-29 Megan Gardner <megan_gardner@apple.com> 2 3 Add TextStream operators for Range, VisiblePosition, VisibleSelection, and ScrollAlignment 4 https://bugs.webkit.org/show_bug.cgi?id=173997 5 6 Reviewed by Simon Fraser. 7 8 Adding logging that can be used with TextStream-based LOG_WITH_STREAM. 9 10 * dom/Range.cpp: 11 (WebCore::operator<<): 12 * dom/Range.h: 13 * editing/VisiblePosition.h: 14 * editing/VisibleSelection.cpp: 15 (WebCore::operator<<): 16 * editing/VisibleSelection.h: 17 * rendering/ScrollAlignment.cpp: 18 (WebCore::operator<<): 19 * rendering/ScrollAlignment.h: 20 1 21 2017-06-29 Matt Lewis <jlewis3@apple.com> 2 22 -
trunk/Source/WebCore/dom/Range.cpp
r218879 r218976 1829 1829 return boundingRect(CoordinateSpace::Absolute); 1830 1830 } 1831 1832 TextStream& operator<<(TextStream& ts, const RangeBoundaryPoint& r) 1833 { 1834 return ts << r.toPosition(); 1835 } 1836 1837 TextStream& operator<<(TextStream& ts, const Range& r) 1838 { 1839 return ts << "Range: " << "start: " << r.startPosition() << " end: " << r.endPosition(); 1840 } 1831 1841 1832 1842 } // namespace WebCore -
trunk/Source/WebCore/dom/Range.h
r218593 r218976 180 180 return Range::compareBoundaryPoints(const_cast<Node*>(a), 0, const_cast<Node*>(b), 0).releaseReturnValue() < 0; 181 181 } 182 183 TextStream& operator<<(TextStream&, const RangeBoundaryPoint&); 184 TextStream& operator<<(TextStream&, const Range&); 182 185 183 186 } // namespace -
trunk/Source/WebCore/editing/VisiblePosition.h
r218748 r218976 164 164 165 165 TextStream& operator<<(TextStream&, EAffinity); 166 TextStream& operator<<(TextStream&, const VisiblePosition&);166 WEBCORE_EXPORT TextStream& operator<<(TextStream&, const VisiblePosition&); 167 167 168 168 } // namespace WebCore -
trunk/Source/WebCore/editing/VisibleSelection.cpp
r218879 r218976 32 32 #include "HTMLInputElement.h" 33 33 #include "TextIterator.h" 34 #include "TextStream.h" 34 35 #include "VisibleUnits.h" 35 36 #include <stdio.h> … … 720 721 } 721 722 } 723 724 TextStream& operator<<(TextStream& stream, const VisibleSelection& v) 725 { 726 TextStream::GroupScope scope(stream); 727 stream << "VisibleSelection " << &v; 728 729 stream.dumpProperty("base", v.base()); 730 stream.dumpProperty("extent", v.extent()); 731 stream.dumpProperty("start", v.start()); 732 stream.dumpProperty("end", v.end()); 733 734 return stream; 735 } 722 736 723 737 #endif -
trunk/Source/WebCore/editing/VisibleSelection.h
r217041 r218976 153 153 return !(a == b); 154 154 } 155 156 WEBCORE_EXPORT TextStream& operator<<(TextStream&, const VisibleSelection&); 155 157 156 158 } // namespace WebCore -
trunk/Source/WebCore/rendering/ScrollAlignment.cpp
r205551 r218976 45 45 #include "ScrollAlignment.h" 46 46 47 #include "Logging.h" 48 #include "TextStream.h" 49 47 50 namespace WebCore { 48 51 … … 56 59 const ScrollAlignment ScrollAlignment::alignLeftAlways = { Behavior::AlignLeft, Behavior::AlignLeft, Behavior::AlignLeft }; 57 60 const ScrollAlignment ScrollAlignment::alignBottomAlways = { Behavior::AlignBottom, Behavior::AlignBottom, Behavior::AlignBottom }; 61 62 TextStream& operator<<(TextStream& ts, ScrollAlignment::Behavior b) 63 { 64 switch (b) { 65 case ScrollAlignment::Behavior::NoScroll: 66 return ts << "NoScroll"; 67 case ScrollAlignment::Behavior::AlignCenter: 68 return ts << "AlignCenter"; 69 case ScrollAlignment::Behavior::AlignTop: 70 return ts << "AlignTop"; 71 case ScrollAlignment::Behavior::AlignBottom: 72 return ts << "AlignBottom"; 73 case ScrollAlignment::Behavior::AlignLeft: 74 return ts << "AlignLeft"; 75 case ScrollAlignment::Behavior::AlignRight: 76 return ts << "AlignRight"; 77 case ScrollAlignment::Behavior::AlignToClosestEdge: 78 return ts << "AlignToClosestEdge"; 79 } 80 } 81 82 TextStream& operator<<(TextStream& ts, const ScrollAlignment& s) 83 { 84 return ts << "ScrollAlignment: visible: " << s.m_rectVisible << " hidden: " << s.m_rectHidden << " partial: " << s.m_rectPartial; 85 } 58 86 59 87 }; // namespace WebCore -
trunk/Source/WebCore/rendering/ScrollAlignment.h
r205551 r218976 45 45 46 46 namespace WebCore { 47 48 class TextStream; 47 49 48 50 struct ScrollAlignment { … … 76 78 Behavior m_rectPartial; 77 79 }; 80 81 WEBCORE_EXPORT TextStream& operator<<(TextStream&, ScrollAlignment::Behavior); 82 WEBCORE_EXPORT TextStream& operator<<(TextStream&, const ScrollAlignment&); 78 83 79 84 }; // namespace WebCore
Note:
See TracChangeset
for help on using the changeset viewer.