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

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

Issue 1550013002: DebugVisualizers: Add blink::Length (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 | tools/win/DebugVisualizers/webkit.natvis » ('j') | 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="SkPoint"> 4 <Type Name="SkPoint">
5 <AlternativeType Name="SkIPoint"/> 5 <AlternativeType Name="SkIPoint"/>
6 <DisplayString>({fX}, {fY})</DisplayString> 6 <DisplayString>({fX}, {fY})</DisplayString>
7 <Expand> 7 <Expand>
8 <Item Name="X">fX</Item> 8 <Item Name="X">fX</Item>
9 <Item Name="Y">fY</Item> 9 <Item Name="Y">fY</Item>
10 </Expand> 10 </Expand>
(...skipping 14 matching lines...) Expand all
25 <Item Name="Right">fRight</Item> 25 <Item Name="Right">fRight</Item>
26 <Item Name="Bottom">fBottom</Item> 26 <Item Name="Bottom">fBottom</Item>
27 <Synthetic Name="Width"> 27 <Synthetic Name="Width">
28 <DisplayString>{fRight - fLeft}</DisplayString> 28 <DisplayString>{fRight - fLeft}</DisplayString>
29 </Synthetic> 29 </Synthetic>
30 <Synthetic Name="Height"> 30 <Synthetic Name="Height">
31 <DisplayString>{fBottom - fTop}</DisplayString> 31 <DisplayString>{fBottom - fTop}</DisplayString>
32 </Synthetic> 32 </Synthetic>
33 </Expand> 33 </Expand>
34 </Type> 34 </Type>
35 <Type Name="LogFontTypeface">
36 <DisplayString>{fLogFont.lfFaceName,su}</DisplayString>
37 </Type>
35 </AutoVisualizer> 38 </AutoVisualizer>
OLDNEW
« no previous file with comments | « no previous file | tools/win/DebugVisualizers/webkit.natvis » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698