mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			1013 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1013 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright 2024 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.
 | |
| 
 | |
| #ifndef CEF_LIBCEF_BROWSER_CHROME_EXTENSIONS_CHROME_EXTENSION_UTIL_H_
 | |
| #define CEF_LIBCEF_BROWSER_CHROME_EXTENSIONS_CHROME_EXTENSION_UTIL_H_
 | |
| #pragma once
 | |
| 
 | |
| namespace content {
 | |
| class WebContents;
 | |
| }  // namespace content
 | |
| 
 | |
| class Profile;
 | |
| 
 | |
| namespace cef {
 | |
| 
 | |
| // Same as ExtensionTabUtil::GetTabById but searching only Alloy style
 | |
| // CefBrowserHosts.
 | |
| bool GetAlloyTabById(int tab_id,
 | |
|                      Profile* profile,
 | |
|                      bool include_incognito,
 | |
|                      content::WebContents** contents);
 | |
| 
 | |
| // Returns true if |contents| is owned by an Alloy style CefBrowserHost.
 | |
| // If |primary_only| is false then guest contents will also be matched.
 | |
| bool IsAlloyContents(content::WebContents* contents, bool primary_only);
 | |
| 
 | |
| }  // namespace cef
 | |
| 
 | |
| #endif  // CEF_LIBCEF_BROWSER_CHROME_EXTENSIONS_CHROME_EXTENSION_UTIL_H_
 |