// Copyright (c) 2014 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #include "shell/browser/ui/views/win_frame_view.h" #include "base/win/windows_version.h" #include "shell/browser/native_window_views.h" #include "ui/views/widget/widget.h" #include "ui/views/win/hwnd_util.h" namespace electron { const char WinFrameView::kViewClassName[] = "WinFrameView"; WinFrameView::WinFrameView() = default; WinFrameView::~WinFrameView() = default; gfx::Rect WinFrameView::GetWindowBoundsForClientBounds( const gfx::Rect& client_bounds) const { return views::GetWindowBoundsForClientBounds( static_cast(const_cast(this)), client_bounds); } int WinFrameView::NonClientHitTest(const gfx::Point& point) { if (window_->has_frame()) return frame_->client_view()->NonClientHitTest(point); else return FramelessView::NonClientHitTest(point); } const char* WinFrameView::GetClassName() const { return kViewClassName; } } // namespace electron