mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	Add "cef/" prefix for CEF #includes in libcef/ directory. Sort #includes by following https://google.github.io/styleguide/cppguide.html#Names_and_Order_of_Includes
		
			
				
	
	
		
			103 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2019 The Chromium Embedded Framework Authors. All rights
 | |
| // reserved. Use of this source code is governed by a BSD-style license that
 | |
| // can be found in the LICENSE file.
 | |
| 
 | |
| #include "cef/libcef/browser/alloy/dialogs/alloy_web_contents_dialog_helper.h"
 | |
| 
 | |
| #include "base/notreached.h"
 | |
| #include "cef/libcef/browser/browser_platform_delegate.h"
 | |
| #include "chrome/browser/platform_util.h"
 | |
| #include "components/web_modal/web_contents_modal_dialog_manager.h"
 | |
| #include "ui/views/widget/widget.h"
 | |
| 
 | |
| AlloyWebContentsDialogHelper::AlloyWebContentsDialogHelper(
 | |
|     content::WebContents* web_contents,
 | |
|     CefBrowserPlatformDelegate* browser_delegate)
 | |
|     : browser_delegate_(browser_delegate), weak_factory_(this) {
 | |
|   web_modal::WebContentsModalDialogManager::CreateForWebContents(web_contents);
 | |
|   web_modal::WebContentsModalDialogManager::FromWebContents(web_contents)
 | |
|       ->SetDelegate(this);
 | |
| }
 | |
| 
 | |
| base::RepeatingClosure
 | |
| AlloyWebContentsDialogHelper::GetBoundsChangedCallback() {
 | |
|   return base::BindRepeating(&AlloyWebContentsDialogHelper::OnBoundsChanged,
 | |
|                              weak_factory_.GetWeakPtr());
 | |
| }
 | |
| 
 | |
| bool AlloyWebContentsDialogHelper::IsWebContentsVisible(
 | |
|     content::WebContents* web_contents) {
 | |
|   if (browser_delegate_->IsWindowless()) {
 | |
|     return !browser_delegate_->IsHidden();
 | |
|   } else if (auto native_view = web_contents->GetNativeView()) {
 | |
|     return platform_util::IsVisible(native_view);
 | |
|   }
 | |
|   DCHECK(false);
 | |
|   return false;
 | |
| }
 | |
| 
 | |
| web_modal::WebContentsModalDialogHost*
 | |
| AlloyWebContentsDialogHelper::GetWebContentsModalDialogHost() {
 | |
|   return this;
 | |
| }
 | |
| 
 | |
| gfx::NativeView AlloyWebContentsDialogHelper::GetHostView() const {
 | |
|   // Windowless rendering uses GetAcceleratedWidget() instead.
 | |
|   if (!browser_delegate_->IsWindowless()) {
 | |
| #if BUILDFLAG(IS_MAC)
 | |
|     // This is supported with all configurations except MacOS with external
 | |
|     // parent because we can't provide a gfx::NativeView or a
 | |
|     // gfx::AcceleratedWidget on that platform (it's an arbitrary internal
 | |
|     // Chromium type). This code should not be reached in that case because
 | |
|     // print preview is disabled.
 | |
|     DCHECK(!browser_delegate_->HasExternalParent());
 | |
| #endif
 | |
|     if (auto widget = browser_delegate_->GetWindowWidget()) {
 | |
|       return widget->GetNativeView();
 | |
|     }
 | |
|   }
 | |
|   NOTIMPLEMENTED();
 | |
|   return gfx::NativeView();
 | |
| }
 | |
| 
 | |
| gfx::AcceleratedWidget AlloyWebContentsDialogHelper::GetAcceleratedWidget()
 | |
|     const {
 | |
| #if defined(USE_AURA)
 | |
|   // Windowed rendering uses GetHostView() instead.
 | |
|   if (browser_delegate_->IsWindowless()) {
 | |
|     if (auto parent_widget = browser_delegate_->GetHostWindowHandle()) {
 | |
|       return parent_widget;
 | |
|     }
 | |
|   }
 | |
| #endif  // defined(USE_AURA)
 | |
|   NOTIMPLEMENTED();
 | |
|   return gfx::kNullAcceleratedWidget;
 | |
| }
 | |
| 
 | |
| gfx::Point AlloyWebContentsDialogHelper::GetDialogPosition(
 | |
|     const gfx::Size& size) {
 | |
|   return browser_delegate_->GetDialogPosition(size);
 | |
| }
 | |
| 
 | |
| gfx::Size AlloyWebContentsDialogHelper::GetMaximumDialogSize() {
 | |
|   return browser_delegate_->GetMaximumDialogSize();
 | |
| }
 | |
| 
 | |
| void AlloyWebContentsDialogHelper::AddObserver(
 | |
|     web_modal::ModalDialogHostObserver* observer) {
 | |
|   if (observer && !observer_list_.HasObserver(observer)) {
 | |
|     observer_list_.AddObserver(observer);
 | |
|   }
 | |
| }
 | |
| 
 | |
| void AlloyWebContentsDialogHelper::RemoveObserver(
 | |
|     web_modal::ModalDialogHostObserver* observer) {
 | |
|   observer_list_.RemoveObserver(observer);
 | |
| }
 | |
| 
 | |
| void AlloyWebContentsDialogHelper::OnBoundsChanged() {
 | |
|   for (auto& observer : observer_list_) {
 | |
|     observer.OnPositionRequiresUpdate();
 | |
|   }
 | |
| }
 |