summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbratell <bratell@opera.com>2015-01-20 10:23:42 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-20 18:24:34 +0000
commit56a8939968f2989b3ed4eda5c13e0143f5890c05 (patch)
tree2b4ed22eeb7b8c5b8aaef1f69dd8a92520515bf9
parentc2155b5f35e65f4725ab0e0de21aa18856902790 (diff)
downloadchromium_src-56a8939968f2989b3ed4eda5c13e0143f5890c05.zip
chromium_src-56a8939968f2989b3ed4eda5c13e0143f5890c05.tar.gz
chromium_src-56a8939968f2989b3ed4eda5c13e0143f5890c05.tar.bz2
Fix WebCore -> blink changes in VS debugger visualizers.
Visual Studio type visualizers need to be updated to reflect that blink uses the blink namespace instead of WebCore now. Otherwise you won't get the readable view of LayoutUnit/LayoutPoint/LayoutRect. R=zturner@chromium.org BUG= Review URL: https://codereview.chromium.org/829093003 Cr-Commit-Position: refs/heads/master@{#312224}
-rw-r--r--tools/win/DebugVisualizers/webkit.natvis20
1 files changed, 10 insertions, 10 deletions
diff --git a/tools/win/DebugVisualizers/webkit.natvis b/tools/win/DebugVisualizers/webkit.natvis
index de7f175..6e93438 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>