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

Side by Side Diff: Source/core/platform/ScrollbarTheme.h

Issue 26501002: Remove platform dependency upon page/Settings class which is a layering violation. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 2 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
« no previous file with comments | « Source/core/page/Settings.cpp ('k') | Source/core/platform/ScrollbarTheme.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/core/page/Settings.cpp ('k') | Source/core/platform/ScrollbarTheme.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698