| Index: third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp b/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
|
| index b4138bcd0ce4dc33b9adf5f20e341507cb5576db..165b4d1be6645ddd2ab769d59beaba590cea44b1 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
|
| @@ -234,6 +234,26 @@ void WebScrollbarThemeClientImpl::setElasticOverscroll(float elasticOverscroll)
|
| return m_scrollbar->setElasticOverscroll(elasticOverscroll);
|
| }
|
|
|
| +bool WebScrollbarThemeClientImpl::trackBackgroudNeedsRepaint() const
|
| +{
|
| + return true;
|
| +}
|
| +
|
| +void WebScrollbarThemeClientImpl::setTrackBackgroudNeedsRepaint(bool)
|
| +{
|
| + ASSERT_NOT_REACHED();
|
| +}
|
| +
|
| +bool WebScrollbarThemeClientImpl::thumbNeedsRepaint() const
|
| +{
|
| + return true;
|
| +}
|
| +
|
| +void WebScrollbarThemeClientImpl::setThumbNeedsRepaint(bool)
|
| +{
|
| + ASSERT_NOT_REACHED();
|
| +}
|
| +
|
| DisplayItemClient WebScrollbarThemeClientImpl::displayItemClient() const
|
| {
|
| ASSERT_NOT_REACHED();
|
|
|