| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef ScrollbarThemeMacCommon_h | 26 #ifndef ScrollbarThemeMacCommon_h |
| 27 #define ScrollbarThemeMacCommon_h | 27 #define ScrollbarThemeMacCommon_h |
| 28 | 28 |
| 29 #include "platform/mac/NSScrollerImpDetails.h" | 29 #include "platform/mac/NSScrollerImpDetails.h" |
| 30 #include "platform/scroll/ScrollbarTheme.h" | 30 #include "platform/scroll/ScrollbarTheme.h" |
| 31 | 31 |
| 32 namespace WebCore { | 32 namespace blink { |
| 33 | 33 |
| 34 class Pattern; | 34 class Pattern; |
| 35 | 35 |
| 36 class PLATFORM_EXPORT ScrollbarThemeMacCommon : public ScrollbarTheme { | 36 class PLATFORM_EXPORT ScrollbarThemeMacCommon : public ScrollbarTheme { |
| 37 public: | 37 public: |
| 38 virtual ~ScrollbarThemeMacCommon(); | 38 virtual ~ScrollbarThemeMacCommon(); |
| 39 | 39 |
| 40 virtual void registerScrollbar(ScrollbarThemeClient*) OVERRIDE; | 40 virtual void registerScrollbar(ScrollbarThemeClient*) OVERRIDE; |
| 41 virtual void unregisterScrollbar(ScrollbarThemeClient*) OVERRIDE; | 41 virtual void unregisterScrollbar(ScrollbarThemeClient*) OVERRIDE; |
| 42 void preferencesChanged(float initialButtonDelay, float autoscrollButtonDela
y, NSScrollerStyle preferredScrollerStyle, bool redraw); | 42 void preferencesChanged(float initialButtonDelay, float autoscrollButtonDela
y, NSScrollerStyle preferredScrollerStyle, bool redraw); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 63 virtual void updateButtonPlacement() { } | 63 virtual void updateButtonPlacement() { } |
| 64 | 64 |
| 65 void paintGivenTickmarks(GraphicsContext*, ScrollbarThemeClient*, const IntR
ect&, const Vector<IntRect>&); | 65 void paintGivenTickmarks(GraphicsContext*, ScrollbarThemeClient*, const IntR
ect&, const Vector<IntRect>&); |
| 66 | 66 |
| 67 RefPtr<Pattern> m_overhangPattern; | 67 RefPtr<Pattern> m_overhangPattern; |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } | 70 } |
| 71 | 71 |
| 72 #endif // ScrollbarThemeMacCommon_h | 72 #endif // ScrollbarThemeMacCommon_h |
| OLD | NEW |