| Index: Source/core/layout/LayoutTheme.cpp
|
| diff --git a/Source/core/layout/LayoutTheme.cpp b/Source/core/layout/LayoutTheme.cpp
|
| index ac541cf75cd4c7691b7a1165cf421a316dc42fb9..07a631b00b2996bd8eed90eb249777df915f648c 100644
|
| --- a/Source/core/layout/LayoutTheme.cpp
|
| +++ b/Source/core/layout/LayoutTheme.cpp
|
| @@ -397,10 +397,10 @@ bool LayoutTheme::isControlStyled(const ComputedStyle& style, const AuthorStyleI
|
| }
|
| }
|
|
|
| -void LayoutTheme::adjustPaintInvalidationRect(const LayoutObject* o, IntRect& r)
|
| +void LayoutTheme::addVisualOverflow(const LayoutObject& object, IntRect& borderBox)
|
| {
|
| #if USE(NEW_THEME)
|
| - m_platformTheme->inflateControlPaintRect(o->style()->appearance(), controlStatesForLayoutObject(o), r, o->style()->effectiveZoom());
|
| + m_platformTheme->addVisualOverflow(object.style()->appearance(), controlStatesForLayoutObject(&object), object.style()->effectiveZoom(), borderBox);
|
| #endif
|
| }
|
|
|
|
|