blob: 8bfa25e122bdcc5f4cf5b2ece8af4e6b2799c494 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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();
bool IsPinchToZoomEnabled();
} // namespace content
#endif // CONTENT_COMMON_CONTENT_SWITCHES_INTERNAL_H_
|