| Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp b/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp
|
| index eef5deeb1c383e1180b0cacc99b4901e82ffe4bf..70d1c8aea48210ef8f93c7bb60097a3e7bb2f4b5 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp
|
| @@ -9,7 +9,7 @@ namespace blink {
|
| struct SameSizeAsDisplayItem {
|
| virtual ~SameSizeAsDisplayItem() { } // Allocate vtable pointer.
|
| void* pointer;
|
| - int ints[2]; // Make sure other fields are packed into two ints.
|
| + int i;
|
| #ifndef NDEBUG
|
| WTF::String m_debugString;
|
| #endif
|
| @@ -251,8 +251,6 @@ void DisplayItem::dumpPropertiesAsDebugString(WTF::StringBuilder& stringBuilder)
|
| stringBuilder.append('"');
|
| if (m_skippedCache)
|
| stringBuilder.append(", skippedCache: true");
|
| - if (m_scope)
|
| - stringBuilder.append(String::format(", scope: %d", m_scope));
|
| }
|
|
|
| #endif
|
|
|