| Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| index 35313327dd0657a44781f524fd4e155277da6f9e..b52e02892e9c450a561c1319a0e956805c1bc300 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| @@ -114,7 +114,7 @@ LayoutObject::SetLayoutNeededForbiddenScope::~SetLayoutNeededForbiddenScope() {
|
| }
|
| #endif
|
|
|
| -struct SameSizeAsLayoutObject : DisplayItemClient {
|
| +struct SameSizeAsLayoutObject : DisplayItemClient, InvalidationDebugging {
|
| virtual ~SameSizeAsLayoutObject() {} // Allocate vtable pointer.
|
| void* pointers[5];
|
| Member<void*> members[1];
|
| @@ -1093,6 +1093,10 @@ String LayoutObject::debugName() const {
|
| return name.toString();
|
| }
|
|
|
| +String LayoutObject::invalidationName() const {
|
| + return debugName();
|
| +}
|
| +
|
| LayoutRect LayoutObject::visualRect() const {
|
| return previousVisualRect();
|
| }
|
|
|