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

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

Issue 2734483002: Reland Change minimum length of Aura overlay scrollbars. (Closed)
Patch Set: Fix breakage on Android Created 3 years, 8 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) 2011 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2011 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 void paintTrackBackground(GraphicsContext&, 57 void paintTrackBackground(GraphicsContext&,
58 const Scrollbar&, 58 const Scrollbar&,
59 const IntRect&) override; 59 const IntRect&) override;
60 void paintThumb(GraphicsContext&, const Scrollbar&, const IntRect&) override; 60 void paintThumb(GraphicsContext&, const Scrollbar&, const IntRect&) override;
61 61
62 void paintScrollCorner(GraphicsContext&, 62 void paintScrollCorner(GraphicsContext&,
63 const DisplayItemClient&, 63 const DisplayItemClient&,
64 const IntRect& cornerRect) override; 64 const IntRect& cornerRect) override;
65 65
66 int minimumThumbLength(const ScrollbarThemeClient&) override;
67
66 private: 68 private:
67 bool isMockTheme() const final { return true; } 69 bool isMockTheme() const final { return true; }
68 }; 70 };
69 71
70 } // namespace blink 72 } // namespace blink
71 #endif // ScrollbarThemeMock_h 73 #endif // ScrollbarThemeMock_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698