blob: a2f3c9e2ab3a79e10865809ceb41fac2f3e8bbca [file] [log] [blame]
Avi Drissman3e1a26c2022-09-15 20:26:031// Copyright 2011 The Chromium Authors
[email protected]267c03d2011-02-02 23:03:072// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef UI_GFX_SCROLLBAR_SIZE_H_
6#define UI_GFX_SCROLLBAR_SIZE_H_
[email protected]267c03d2011-02-02 23:03:077
Kalvin Lee7d17d5572024-11-10 13:52:458#include "base/component_export.h"
[email protected]ea47b6a2011-07-17 19:39:429
[email protected]267c03d2011-02-02 23:03:0710namespace gfx {
11
12// This should return the thickness, in pixels, of a scrollbar in web content.
13// This needs to match the values in WebCore's
14// ScrollbarThemeChromiumXXX.cpp::scrollbarThickness().
Kalvin Lee7d17d5572024-11-10 13:52:4515COMPONENT_EXPORT(GFX) int scrollbar_size();
[email protected]267c03d2011-02-02 23:03:0716
17} // namespace gfx
18
19#endif // UI_GFX_SCROLLBAR_SIZE_H_