| 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 ScrollbarPart invalidateOnThumbPositionChange(const ScrollbarThemeClient&, f
loat oldPosiiton, float newPosition) const override; | |
| 44 void updateEnabledState(const ScrollbarThemeClient&) override; | 43 void updateEnabledState(const ScrollbarThemeClient&) override; |
| 45 int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) override; | 44 int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) override; |
| 46 bool usesOverlayScrollbars() const override; | 45 bool usesOverlayScrollbars() const override; |
| 47 void updateScrollbarOverlayStyle(const ScrollbarThemeClient&) override; | 46 void updateScrollbarOverlayStyle(const ScrollbarThemeClient&) override; |
| 48 WebScrollbarButtonsPlacement buttonsPlacement() const override; | 47 WebScrollbarButtonsPlacement buttonsPlacement() const override; |
| 49 | 48 |
| 50 void registerScrollbar(ScrollbarThemeClient&) override; | 49 void registerScrollbar(ScrollbarThemeClient&) override; |
| 51 void unregisterScrollbar(ScrollbarThemeClient&) override; | 50 void unregisterScrollbar(ScrollbarThemeClient&) override; |
| 52 | 51 |
| 53 void setNewPainterForScrollbar(ScrollbarThemeClient&, ScrollbarPainter); | 52 void setNewPainterForScrollbar(ScrollbarThemeClient&, ScrollbarPainter); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 65 | 64 |
| 66 bool hasButtons(const ScrollbarThemeClient&) override { return false; } | 65 bool hasButtons(const ScrollbarThemeClient&) override { return false; } |
| 67 bool hasThumb(const ScrollbarThemeClient&) override; | 66 bool hasThumb(const ScrollbarThemeClient&) override; |
| 68 | 67 |
| 69 int minimumThumbLength(const ScrollbarThemeClient&) override; | 68 int minimumThumbLength(const ScrollbarThemeClient&) override; |
| 70 }; | 69 }; |
| 71 | 70 |
| 72 } | 71 } |
| 73 | 72 |
| 74 #endif | 73 #endif |
| OLD | NEW |