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

Unified Diff: Source/core/page/Settings.h

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 | « LayoutTests/fast/scrolling/scrollbar-tickmarks-hittest.html ('k') | Source/core/page/Settings.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/Settings.h
diff --git a/Source/core/page/Settings.h b/Source/core/page/Settings.h
index 9fe3bfa6d61666771c3ba92e53a21f07be7ad60e..7f56bb45fd7d4b9d2e85400db6c0b5a42ffe0789 100644
--- a/Source/core/page/Settings.h
+++ b/Source/core/page/Settings.h
@@ -142,8 +142,8 @@ public:
static void setMockScrollbarsEnabled(bool flag);
static bool mockScrollbarsEnabled();
- static void setUsesOverlayScrollbars(bool flag);
- static bool usesOverlayScrollbars();
+ static void setMockScrollbarsUseOverlay(bool flag);
+ static bool mockScrollbarsUseOverlay();
void setTouchEventEmulationEnabled(bool enabled) { m_touchEventEmulationEnabled = enabled; }
bool isTouchEventEmulationEnabled() const { return m_touchEventEmulationEnabled; }
@@ -202,7 +202,7 @@ private:
void imageLoadingSettingsTimerFired(Timer<Settings>*);
static bool gMockScrollbarsEnabled;
- static bool gUsesOverlayScrollbars;
+ static bool gMockScrollbarsUseOverlay;
};
} // namespace WebCore
« no previous file with comments | « LayoutTests/fast/scrolling/scrollbar-tickmarks-hittest.html ('k') | Source/core/page/Settings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698