#ifndef UI_VIEWS_WINDOW_NATIVE_FRAME_VIEW_MAC_H_
#define UI_VIEWS_WINDOW_NATIVE_FRAME_VIEW_MAC_H_
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/window/native_frame_view.h"
namespace views {
class Widget;
class VIEWS_EXPORT NativeFrameViewMac : public NativeFrameView {
public:
METADATA_HEADER(NativeFrameViewMac);
explicit NativeFrameViewMac(Widget* frame);
NativeFrameViewMac(const NativeFrameViewMac&) = delete;
NativeFrameViewMac& operator=(const NativeFrameViewMac&) = delete;
~NativeFrameViewMac() override;
gfx::Rect GetWindowBoundsForClientBounds(
const gfx::Rect& client_bounds) const override;
};
}
#endif