Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(351)

Side by Side Diff: third_party/WebKit/Source/platform/scroll/ScrollbarThemeMacOverlayAPI.h

Issue 1558493002: Reland: Make ScrollbarThemeAura selectively invalidate scrollbar parts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix ScrollableAreaTest.InvalidatesCompositedScrollbarsIfPartsNeedRepaint for Oilpan Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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;
43 void updateEnabledState(const ScrollbarThemeClient&) override; 44 void updateEnabledState(const ScrollbarThemeClient&) override;
44 int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) override; 45 int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) override;
45 bool usesOverlayScrollbars() const override; 46 bool usesOverlayScrollbars() const override;
46 void updateScrollbarOverlayStyle(const ScrollbarThemeClient&) override; 47 void updateScrollbarOverlayStyle(const ScrollbarThemeClient&) override;
47 WebScrollbarButtonsPlacement buttonsPlacement() const override; 48 WebScrollbarButtonsPlacement buttonsPlacement() const override;
48 49
49 void registerScrollbar(ScrollbarThemeClient&) override; 50 void registerScrollbar(ScrollbarThemeClient&) override;
50 void unregisterScrollbar(ScrollbarThemeClient&) override; 51 void unregisterScrollbar(ScrollbarThemeClient&) override;
51 52
52 void setNewPainterForScrollbar(ScrollbarThemeClient&, ScrollbarPainter); 53 void setNewPainterForScrollbar(ScrollbarThemeClient&, ScrollbarPainter);
(...skipping 11 matching lines...) Expand all
64 65
65 bool hasButtons(const ScrollbarThemeClient&) override { return false; } 66 bool hasButtons(const ScrollbarThemeClient&) override { return false; }
66 bool hasThumb(const ScrollbarThemeClient&) override; 67 bool hasThumb(const ScrollbarThemeClient&) override;
67 68
68 int minimumThumbLength(const ScrollbarThemeClient&) override; 69 int minimumThumbLength(const ScrollbarThemeClient&) override;
69 }; 70 };
70 71
71 } 72 }
72 73
73 #endif 74 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698