| Index: Source/platform/scroll/ScrollbarThemeClient.h
|
| diff --git a/Source/platform/scroll/ScrollbarThemeClient.h b/Source/platform/scroll/ScrollbarThemeClient.h
|
| index df31f31994c7483d94c00686d565d3f8bd809dd6..bc76d8e761504d2cef759fb77e843e42dcf1de1e 100644
|
| --- a/Source/platform/scroll/ScrollbarThemeClient.h
|
| +++ b/Source/platform/scroll/ScrollbarThemeClient.h
|
| @@ -31,6 +31,7 @@
|
| #include "platform/geometry/IntRect.h"
|
| #include "platform/geometry/IntSize.h"
|
| #include "platform/scroll/ScrollTypes.h"
|
| +#include "public/platform/WebThemeEngine.h"
|
| #include "wtf/PassOwnPtr.h"
|
| #include "wtf/Vector.h"
|
|
|
| @@ -84,6 +85,23 @@ public:
|
|
|
| virtual bool isOverlayScrollbar() const = 0;
|
|
|
| + virtual bool isDuringStateTransitionAnimation() const
|
| + {
|
| + return false;
|
| + }
|
| + virtual double stateTransitionProgress() const
|
| + {
|
| + return 0;
|
| + }
|
| + virtual blink::WebThemeEngine::State stateTransitionStartState() const
|
| + {
|
| + return blink::WebThemeEngine::StateNormal;
|
| + }
|
| + virtual blink::WebThemeEngine::State stateTransitionEndState() const
|
| + {
|
| + return blink::WebThemeEngine::StateNormal;
|
| + }
|
| +
|
| virtual bool isAlphaLocked() const = 0;
|
| virtual void setIsAlphaLocked(bool) = 0;
|
|
|
|
|