OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 | 131 |
132 virtual IntRect constrainTrackRectToTrackPieces(ScrollbarThemeClient*, const
IntRect& rect) { return rect; } | 132 virtual IntRect constrainTrackRectToTrackPieces(ScrollbarThemeClient*, const
IntRect& rect) { return rect; } |
133 | 133 |
134 virtual void registerScrollbar(ScrollbarThemeClient*) { } | 134 virtual void registerScrollbar(ScrollbarThemeClient*) { } |
135 virtual void unregisterScrollbar(ScrollbarThemeClient*) { } | 135 virtual void unregisterScrollbar(ScrollbarThemeClient*) { } |
136 | 136 |
137 virtual bool isMockTheme() const { return false; } | 137 virtual bool isMockTheme() const { return false; } |
138 | 138 |
139 static ScrollbarTheme* theme(); | 139 static ScrollbarTheme* theme(); |
140 | 140 |
| 141 static void setMockScrollbarsEnabled(bool flag); |
| 142 static bool mockScrollbarsEnabled(); |
| 143 |
141 private: | 144 private: |
142 static ScrollbarTheme* nativeTheme(); // Must be implemented to return the c
orrect theme subclass. | 145 static ScrollbarTheme* nativeTheme(); // Must be implemented to return the c
orrect theme subclass. |
| 146 static bool gMockScrollbarsEnabled; |
143 }; | 147 }; |
144 | 148 |
145 } | 149 } |
146 #endif | 150 #endif |
OLD | NEW |