blob: bc171aaebb90fde83e491d37051b54ce70c8d6c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2018 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 UI_BASE_WIN_HWND_METRICS_H_
#define UI_BASE_WIN_HWND_METRICS_H_
#include <windows.h>
#include "base/component_export.h"
namespace ui {
// The size, in pixels, of the non-client frame around a window on |monitor|.
COMPONENT_EXPORT(UI_BASE) int GetFrameThickness(HMONITOR monitor);
} // namespace ui
#endif // UI_BASE_WIN_HWND_METRICS_H_
|