diff options
author | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-24 17:31:08 +0000 |
---|---|---|
committer | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-24 17:31:08 +0000 |
commit | 54c8d287d92857d997bf399991cb27dd6cd2e632 (patch) | |
tree | b127a88837f951c938eab6157f24baab4644990f /content/common/content_switches_internal.h | |
parent | e2b321945f444dec687847523320b4eb188b666c (diff) | |
download | chromium_src-54c8d287d92857d997bf399991cb27dd6cd2e632.zip chromium_src-54c8d287d92857d997bf399991cb27dd6cd2e632.tar.gz chromium_src-54c8d287d92857d997bf399991cb27dd6cd2e632.tar.bz2 |
Add ability to enable / disable overscroll in about:flags
This will allow us to enable overscroll by default on one platform only.
BUG=None
TEST=None
R=jam@chromium.org
Review URL: https://codereview.chromium.org/137203012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@246915 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/content_switches_internal.h')
-rw-r--r-- | content/common/content_switches_internal.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/content/common/content_switches_internal.h b/content/common/content_switches_internal.h new file mode 100644 index 0000000..7bc7d73 --- /dev/null +++ b/content/common/content_switches_internal.h @@ -0,0 +1,15 @@ +// Copyright (c) 2014 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CONTENT_COMMON_CONTENT_SWITCHES_INTERNAL_H_ +#define CONTENT_COMMON_CONTENT_SWITCHES_INTERNAL_H_ + +namespace content { + +// Should we use overlay scrollbars. +bool IsOverlayScrollbarEnabled(); + +} // namespace content + +#endif // CONTENT_COMMON_CONTENT_SWITCHES_INTERNAL_H_ |