* feat: make win.setAspectRatio() work on Windows * update patches Co-authored-by: Electron Bot <electron@github.com>
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			982 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			982 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright (c) 2015 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/native_frame_view.h"
 | 
						|
 | 
						|
#include "shell/browser/native_window.h"
 | 
						|
 | 
						|
namespace electron {
 | 
						|
 | 
						|
const char NativeFrameView::kViewClassName[] = "ElectronNativeFrameView";
 | 
						|
 | 
						|
NativeFrameView::NativeFrameView(NativeWindow* window, views::Widget* widget)
 | 
						|
    : views::NativeFrameView(widget), window_(window) {}
 | 
						|
 | 
						|
gfx::Size NativeFrameView::GetMinimumSize() const {
 | 
						|
  return window_->GetMinimumSize();
 | 
						|
}
 | 
						|
 | 
						|
gfx::Size NativeFrameView::GetMaximumSize() const {
 | 
						|
  gfx::Size size = window_->GetMaximumSize();
 | 
						|
  // Electron public APIs returns (0, 0) when maximum size is not set, but it
 | 
						|
  // would break internal window APIs like HWNDMessageHandler::SetAspectRatio.
 | 
						|
  return size.IsEmpty() ? gfx::Size(INT_MAX, INT_MAX) : size;
 | 
						|
}
 | 
						|
 | 
						|
const char* NativeFrameView::GetClassName() const {
 | 
						|
  return kViewClassName;
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace electron
 |