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

Unified Diff: Source/core/platform/ScrollbarTheme.cpp

Issue 23819053: Rename usesOverlayScrollbars of settings to mockScrollbarsUseOverlay (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: mockScrollbarsUses... -> mockScrollbarsUse... Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/page/Settings.cpp ('k') | Source/core/platform/mock/ScrollbarThemeMock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/ScrollbarTheme.cpp
diff --git a/Source/core/platform/ScrollbarTheme.cpp b/Source/core/platform/ScrollbarTheme.cpp
index 419ab9df51efd60126334bc54a8a00e28044f8b1..baf89b66baa417c9d3f22b8a52a5b7cf4b8eef94 100644
--- a/Source/core/platform/ScrollbarTheme.cpp
+++ b/Source/core/platform/ScrollbarTheme.cpp
@@ -37,7 +37,7 @@ namespace WebCore {
ScrollbarTheme* ScrollbarTheme::theme()
{
if (Settings::mockScrollbarsEnabled()) {
- if (Settings::usesOverlayScrollbars()) {
+ if (Settings::mockScrollbarsUseOverlay()) {
DEFINE_STATIC_LOCAL(ScrollbarThemeOverlayMock, overlayMockTheme, ());
return &overlayMockTheme;
}
« no previous file with comments | « Source/core/page/Settings.cpp ('k') | Source/core/platform/mock/ScrollbarThemeMock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698