Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(263)

Unified Diff: third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp

Issue 1528103002: Remove ScrollbarThemeClient repaint methods. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 6c7513b1f38e191d7c165b9fd95405fb4576456c..6c429d55558ea1cbfb2fbdc2294188037d198a32 100644
--- a/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
@@ -234,26 +234,6 @@ void WebScrollbarThemeClientImpl::setElasticOverscroll(float elasticOverscroll)
return m_scrollbar.setElasticOverscroll(elasticOverscroll);
}
-bool WebScrollbarThemeClientImpl::trackNeedsRepaint() const
-{
- return true;
-}
-
-void WebScrollbarThemeClientImpl::setTrackNeedsRepaint(bool)
-{
- ASSERT_NOT_REACHED();
-}
-
-bool WebScrollbarThemeClientImpl::thumbNeedsRepaint() const
-{
- return true;
-}
-
-void WebScrollbarThemeClientImpl::setThumbNeedsRepaint(bool)
-{
- ASSERT_NOT_REACHED();
-}
-
String WebScrollbarThemeClientImpl::debugName() const
{
return "WebScrollbarThemeClientImpl";

Powered by Google App Engine
This is Rietveld 408576698