| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #include "platform/scroll/ScrollbarThemeMacCommon.h" | 34 #include "platform/scroll/ScrollbarThemeMacCommon.h" |
| 35 | 35 |
| 36 typedef id ScrollbarPainter; | 36 typedef id ScrollbarPainter; |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class PLATFORM_EXPORT ScrollbarThemeMacOverlayAPI : public ScrollbarThemeMacComm
on { | 40 class PLATFORM_EXPORT ScrollbarThemeMacOverlayAPI : public ScrollbarThemeMacComm
on { |
| 41 public: | 41 public: |
| 42 bool shouldRepaintAllPartsOnInvalidation() const override { return false; } | 42 bool shouldRepaintAllPartsOnInvalidation() const override { return false; } |
| 43 void updateEnabledState(const ScrollbarThemeClient*) override; | 43 void updateEnabledState(const ScrollbarThemeClient&) override; |
| 44 int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) override; | 44 int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) override; |
| 45 bool usesOverlayScrollbars() const override; | 45 bool usesOverlayScrollbars() const override; |
| 46 void updateScrollbarOverlayStyle(const ScrollbarThemeClient*) override; | 46 void updateScrollbarOverlayStyle(const ScrollbarThemeClient&) override; |
| 47 ScrollbarButtonsPlacement buttonsPlacement() const override; | 47 ScrollbarButtonsPlacement buttonsPlacement() const override; |
| 48 | 48 |
| 49 void registerScrollbar(ScrollbarThemeClient*) override; | 49 void registerScrollbar(ScrollbarThemeClient&) override; |
| 50 void unregisterScrollbar(ScrollbarThemeClient*) override; | 50 void unregisterScrollbar(ScrollbarThemeClient&) override; |
| 51 | 51 |
| 52 void setNewPainterForScrollbar(ScrollbarThemeClient*, ScrollbarPainter); | 52 void setNewPainterForScrollbar(ScrollbarThemeClient&, ScrollbarPainter); |
| 53 ScrollbarPainter painterForScrollbar(const ScrollbarThemeClient*) const; | 53 ScrollbarPainter painterForScrollbar(const ScrollbarThemeClient&) const; |
| 54 | 54 |
| 55 void paintTrackBackground(GraphicsContext*, const ScrollbarThemeClient*, con
st IntRect&) override; | 55 void paintTrackBackground(GraphicsContext&, const ScrollbarThemeClient&, con
st IntRect&) override; |
| 56 void paintThumb(GraphicsContext*, const ScrollbarThemeClient*, const IntRect
&) override; | 56 void paintThumb(GraphicsContext&, const ScrollbarThemeClient&, const IntRect
&) override; |
| 57 | 57 |
| 58 float thumbOpacity(const ScrollbarThemeClient*) const override; | 58 float thumbOpacity(const ScrollbarThemeClient&) const override; |
| 59 | 59 |
| 60 protected: | 60 protected: |
| 61 IntRect trackRect(const ScrollbarThemeClient*, bool painting = false) overri
de; | 61 IntRect trackRect(const ScrollbarThemeClient&, bool painting = false) overri
de; |
| 62 IntRect backButtonRect(const ScrollbarThemeClient*, ScrollbarPart, bool pain
ting = false) override; | 62 IntRect backButtonRect(const ScrollbarThemeClient&, ScrollbarPart, bool pain
ting = false) override; |
| 63 IntRect forwardButtonRect(const ScrollbarThemeClient*, ScrollbarPart, bool p
ainting = false) override; | 63 IntRect forwardButtonRect(const ScrollbarThemeClient&, ScrollbarPart, bool p
ainting = false) override; |
| 64 | 64 |
| 65 bool hasButtons(const ScrollbarThemeClient*) override { return false; } | 65 bool hasButtons(const ScrollbarThemeClient&) override { return false; } |
| 66 bool hasThumb(const ScrollbarThemeClient*) override; | 66 bool hasThumb(const ScrollbarThemeClient&) override; |
| 67 | 67 |
| 68 int minimumThumbLength(const ScrollbarThemeClient*) override; | 68 int minimumThumbLength(const ScrollbarThemeClient&) override; |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } | 71 } |
| 72 | 72 |
| 73 #endif | 73 #endif |
| OLD | NEW |