mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			656 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			656 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright (c) 2016 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_TESTS_CEFCLIENT_BROWSER_CLIENT_BROWSER_H_
 | 
						|
#define CEF_TESTS_CEFCLIENT_BROWSER_CLIENT_BROWSER_H_
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "include/cef_base.h"
 | 
						|
#include "tests/shared/browser/client_app_browser.h"
 | 
						|
 | 
						|
namespace client::browser {
 | 
						|
 | 
						|
// Create the browser delegate. Called from client_app_delegates_browser.cc.
 | 
						|
void CreateDelegates(ClientAppBrowser::DelegateSet& delegates);
 | 
						|
 | 
						|
}  // namespace client::browser
 | 
						|
 | 
						|
#endif  // CEF_TESTS_CEFCLIENT_BROWSER_CLIENT_BROWSER_H_
 |