Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: tools/win/DebugVisualizers/webkit.natvis

Issue 1331313003: Change MSVS visualizers to query y, width and height on WebRect. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8" ?> 1 <?xml version="1.0" encoding="utf-8" ?>
2 <AutoVisualizer 2 <AutoVisualizer
3 xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010"> 3 xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
4 <Type Name="WTF::String"> 4 <Type Name="WTF::String">
5 <DisplayString Condition="m_impl.m_ptr == 0">(null)</DisplayString> 5 <DisplayString Condition="m_impl.m_ptr == 0">(null)</DisplayString>
6 <DisplayString IncludeView="bare">{*m_impl.m_ptr,view(bare)}</DisplayString> 6 <DisplayString IncludeView="bare">{*m_impl.m_ptr,view(bare)}</DisplayString>
7 <DisplayString>{*m_impl.m_ptr}</DisplayString> 7 <DisplayString>{*m_impl.m_ptr}</DisplayString>
8 <Expand> 8 <Expand>
9 <Item Name="Impl">m_impl.m_ptr</Item> 9 <Item Name="Impl">m_impl.m_ptr</Item>
10 </Expand> 10 </Expand>
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 <Expand> 85 <Expand>
86 <Item Name="Location">m_location</Item> 86 <Item Name="Location">m_location</Item>
87 <Item Name="Size">m_size</Item> 87 <Item Name="Size">m_size</Item>
88 </Expand> 88 </Expand>
89 </Type> 89 </Type>
90 <Type Name="blink::WebRect"> 90 <Type Name="blink::WebRect">
91 <AlternativeType Name="blink::WebFloatRect"/> 91 <AlternativeType Name="blink::WebFloatRect"/>
92 <DisplayString>({x}, {y}) x ({width}, {height})</DisplayString> 92 <DisplayString>({x}, {y}) x ({width}, {height})</DisplayString>
93 <Expand> 93 <Expand>
94 <Item Name="x">x</Item> 94 <Item Name="x">x</Item>
95 <Item Name="y">x</Item> 95 <Item Name="y">y</Item>
96 <Item Name="width">x</Item> 96 <Item Name="width">width</Item>
97 <Item Name="height">x</Item> 97 <Item Name="height">height</Item>
98 <Synthetic Name="right"> 98 <Synthetic Name="right">
99 <DisplayString>{x + width}</DisplayString> 99 <DisplayString>{x + width}</DisplayString>
100 </Synthetic> 100 </Synthetic>
101 <Synthetic Name="bottom"> 101 <Synthetic Name="bottom">
102 <DisplayString>{y + height}</DisplayString> 102 <DisplayString>{y + height}</DisplayString>
103 </Synthetic> 103 </Synthetic>
104 </Expand> 104 </Expand>
105 </Type> 105 </Type>
106 <Type Name="blink::WebPoint"> 106 <Type Name="blink::WebPoint">
107 <AlternativeType Name="blink::WebFloatPoint"/> 107 <AlternativeType Name="blink::WebFloatPoint"/>
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 <DisplayString>{*m_object} {m_start}-{m_stop}</DisplayString> 152 <DisplayString>{*m_object} {m_start}-{m_stop}</DisplayString>
153 </Type> 153 </Type>
154 <!-- Fonts --> 154 <!-- Fonts -->
155 <Type Name="blink::SimpleFontData"> 155 <Type Name="blink::SimpleFontData">
156 <DisplayString>{m_platformData}</DisplayString> 156 <DisplayString>{m_platformData}</DisplayString>
157 </Type> 157 </Type>
158 <Type Name="blink::FontPlatformData"> 158 <Type Name="blink::FontPlatformData">
159 <DisplayString>{((skia.dll!LogFontTypeface*)m_typeface.m_ptr)->fLogFont.lfFa ceName,su}, {m_textSize,g}px</DisplayString> 159 <DisplayString>{((skia.dll!LogFontTypeface*)m_typeface.m_ptr)->fLogFont.lfFa ceName,su}, {m_textSize,g}px</DisplayString>
160 </Type> 160 </Type>
161 </AutoVisualizer> 161 </AutoVisualizer>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698