blob: 22ec6f9c85ede9fe13a0539fe2294a2be99b43ab (
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 "ui/base/ui_base_export.h"
namespace ui {
// The size, in pixels, of the non-client frame around a window on |monitor|.
UI_BASE_EXPORT int GetFrameThickness(HMONITOR monitor);
} // namespace ui
#endif // UI_BASE_WIN_HWND_METRICS_H_
|