OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 virtual void setEnabled(bool) = 0; | 84 virtual void setEnabled(bool) = 0; |
85 | 85 |
86 virtual bool isOverlayScrollbar() const = 0; | 86 virtual bool isOverlayScrollbar() const = 0; |
87 | 87 |
88 virtual bool isAlphaLocked() const = 0; | 88 virtual bool isAlphaLocked() const = 0; |
89 virtual void setIsAlphaLocked(bool) = 0; | 89 virtual void setIsAlphaLocked(bool) = 0; |
90 | 90 |
91 virtual float elasticOverscroll() const = 0; | 91 virtual float elasticOverscroll() const = 0; |
92 virtual void setElasticOverscroll(float) = 0; | 92 virtual void setElasticOverscroll(float) = 0; |
93 | 93 |
94 virtual bool trackNeedsRepaint() const = 0; | |
95 virtual void setTrackNeedsRepaint(bool) = 0; | |
96 virtual bool thumbNeedsRepaint() const = 0; | |
97 virtual void setThumbNeedsRepaint(bool) = 0; | |
98 | |
99 protected: | 94 protected: |
100 virtual ~ScrollbarThemeClient() { } | 95 virtual ~ScrollbarThemeClient() { } |
101 }; | 96 }; |
102 | 97 |
103 } // namespace blink | 98 } // namespace blink |
104 | 99 |
105 #endif // ScollbarThemeClient_h | 100 #endif // ScollbarThemeClient_h |
OLD | NEW |