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

Unified Diff: tools/win/DebugVisualizers/webkit.natvis

Issue 829093003: Fix WebCore -> blink changes in VS debugger visualizers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/win/DebugVisualizers/webkit.natvis
diff --git a/tools/win/DebugVisualizers/webkit.natvis b/tools/win/DebugVisualizers/webkit.natvis
index de7f17502cbb8552e620ac787767bd8a74900ebb..6e93438f2a0a28721f58c8b50147fdba7c8cae55 100644
--- a/tools/win/DebugVisualizers/webkit.natvis
+++ b/tools/win/DebugVisualizers/webkit.natvis
@@ -45,34 +45,34 @@
<Item Name="Ptr">m_ptr</Item>
</Expand>
</Type>
- <Type Name="WebCore::LayoutUnit">
+ <Type Name="blink::LayoutUnit">
<DisplayString>{(float)m_value / kFixedPointDenominator}</DisplayString>
<Expand>
<Item Name="FloatVal">(float)m_value / kFixedPointDenominator</Item>
<Item Name="RawVal">m_value</Item>
</Expand>
</Type>
- <Type Name="WebCore::LayoutSize">
- <AlternativeType Name="WebCore::IntSize"/>
- <AlternativeType Name="WebCore::FloatSize"/>
+ <Type Name="blink::LayoutSize">
+ <AlternativeType Name="blink::IntSize"/>
+ <AlternativeType Name="blink::FloatSize"/>
<DisplayString>({m_width}, {m_height})</DisplayString>
<Expand>
<Item Name="Width">m_width</Item>
<Item Name="Height">m_height</Item>
</Expand>
</Type>
- <Type Name="WebCore::LayoutPoint">
- <AlternativeType Name="WebCore::IntPoint"/>
- <AlternativeType Name="WebCore::FloatPoint"/>
+ <Type Name="blink::LayoutPoint">
+ <AlternativeType Name="blink::IntPoint"/>
+ <AlternativeType Name="blink::FloatPoint"/>
<DisplayString>({m_x}, {m_y})</DisplayString>
<Expand>
<Item Name="X">m_x</Item>
<Item Name="Y">m_y</Item>
</Expand>
</Type>
- <Type Name="WebCore::LayoutRect">
- <AlternativeType Name="WebCore::IntRect"/>
- <AlternativeType Name="WebCore::FloatRect"/>
+ <Type Name="blink::LayoutRect">
+ <AlternativeType Name="blink::IntRect"/>
+ <AlternativeType Name="blink::FloatRect"/>
<DisplayString>({m_location.m_x}, {m_location.m_y}) x ({m_size.m_width}, {m_size.m_height})</DisplayString>
<Expand>
<Item Name="Location">m_location</Item>
« 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