Commit 542dd2a4 authored by Koji Ishii's avatar Koji Ishii Committed by Commit Bot

DebugVisualizers: Fix webkit.natvis for recent renames

This patch reflects recent renames to webkit.natvis.

Tested by verbose output of natvis diagnostic messages.

Change-Id: I2ce6b62eac562f6219c270d851710dbc99d6bd07
Reviewed-on: https://chromium-review.googlesource.com/662880Reviewed-by: default avatarBruce Dawson <brucedawson@chromium.org>
Commit-Queue: Koji Ishii <kojii@chromium.org>
Cr-Commit-Position: refs/heads/master@{#501507}
parent e8e870d5
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
<Item Name="Length">length_</Item> <Item Name="Length">length_</Item>
<Item Name="Hash">hash_</Item> <Item Name="Hash">hash_</Item>
<Item Name="AsciiText" Condition="is8_bit_">(this+1),[length_]s</Item> <Item Name="AsciiText" Condition="is8_bit_">(this+1),[length_]s</Item>
<Item Name="UnicodeText" Condition="!is8_bit_">(this+1),[length_]su</Item> <Item Name="UnicodeText" Condition="!is8_bit_">(wchar_t*)(this+1),[length_]su</Item>
</Expand> </Expand>
</Type> </Type>
<Type Name="WTF::AtomicString"> <Type Name="WTF::AtomicString">
...@@ -211,14 +211,12 @@ ...@@ -211,14 +211,12 @@
</Type> </Type>
<!-- Layout: LayoutNG --> <!-- Layout: LayoutNG -->
<Type Name="blink::NGBlockNode"> <Type Name="blink::NGBlockNode">
<DisplayString>{layout_box_}</DisplayString> <DisplayString>{*box_}</DisplayString>
</Type> </Type>
<Type Name="blink::NGInlineNode"> <Type Name="blink::NGInlineNode">
<DisplayString>{*start_inline_}</DisplayString> <DisplayString>{*box_}</DisplayString>
<Expand> <Expand>
<Item Name="inline_node_data">*block_->ng_inline_node_data_</Item> <Item Name="inline_node_data">*((blink::LayoutNGBlockFlow*)box_)->ng_inline_node_data_</Item>
<Item Name="text_content">block_->ng_inline_node_data_->text_content_</Item>
<Item Name="items">block_->ng_inline_node_data_->items_</Item>
</Expand> </Expand>
</Type> </Type>
<Type Name="blink::NGInlineItem"> <Type Name="blink::NGInlineItem">
...@@ -276,6 +274,6 @@ ...@@ -276,6 +274,6 @@
<DisplayString>{platform_data_}</DisplayString> <DisplayString>{platform_data_}</DisplayString>
</Type> </Type>
<Type Name="blink::FontPlatformData"> <Type Name="blink::FontPlatformData">
<DisplayString>{*typeface_.ptr_}, {text_size_}px</DisplayString> <DisplayString>{*typeface_.fPtr}, {text_size_}px</DisplayString>
</Type> </Type>
</AutoVisualizer> </AutoVisualizer>
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment