diff options
| author | Simon Hausmann <simon.hausmann@digia.com> | 2012-09-20 14:01:09 +0200 |
|---|---|---|
| committer | Simon Hausmann <simon.hausmann@digia.com> | 2012-09-20 14:01:09 +0200 |
| commit | 6dbcd09121fe266c7704a524b5cbd7f2754659c0 (patch) | |
| tree | 5ae0d16cec0cc61f576d51c57b3a4613c7e91e22 /Source/Platform | |
| parent | 6bbb7fbbac94d0f511a7bd0cbd50854ab643bfb2 (diff) | |
| download | qtwebkit-6dbcd09121fe266c7704a524b5cbd7f2754659c0.tar.gz | |
Imported WebKit commit 080af0beaa6f0ba8ff8f44cb8bd8b5dcf75ac0af (http://svn.webkit.org/repository/webkit/trunk@129119)
New snapshot with prospective build fix for incorrect QtWebKit master module header file creation
Diffstat (limited to 'Source/Platform')
| -rw-r--r-- | Source/Platform/ChangeLog | 12 | ||||
| -rw-r--r-- | Source/Platform/chromium/public/WebScrollbar.h | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/Source/Platform/ChangeLog b/Source/Platform/ChangeLog index bedc71772..1a4e101e0 100644 --- a/Source/Platform/ChangeLog +++ b/Source/Platform/ChangeLog @@ -1,3 +1,15 @@ +2012-09-18 Sailesh Agrawal <sail@chromium.org> + + Chromium: Scrollbar with tickmarks doesn't respond to clicks + https://bugs.webkit.org/show_bug.cgi?id=96049 + + Reviewed by Beth Dakin. + + Added isAlphaLocked and setIsAlphaLocked. + + * chromium/public/WebScrollbar.h: + (WebScrollbar): + 2012-09-17 Brian Anderson <brianderson@chromium.org> [chromium] Add rendering commit statistics diff --git a/Source/Platform/chromium/public/WebScrollbar.h b/Source/Platform/chromium/public/WebScrollbar.h index 0462b6489..95ce7ab8f 100644 --- a/Source/Platform/chromium/public/WebScrollbar.h +++ b/Source/Platform/chromium/public/WebScrollbar.h @@ -106,6 +106,8 @@ public: virtual ScrollbarOverlayStyle scrollbarOverlayStyle() const = 0; virtual bool isCustomScrollbar() const = 0; virtual Orientation orientation() const = 0; + virtual bool isAlphaLocked() const { return false; } + virtual void setIsAlphaLocked(bool) { } }; } // namespace WebKit |
