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
		
			
				
	
	
		
			12 lines
		
	
	
		
			594 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			594 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright 2021 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/chrome/views/toolbar_view_view.h"
 | |
| 
 | |
| CefToolbarViewView::CefToolbarViewView(CefViewDelegate* cef_delegate,
 | |
|                                        Browser* browser,
 | |
|                                        BrowserView* browser_view,
 | |
|                                        std::optional<DisplayMode> display_mode)
 | |
|     : ParentClass(cef_delegate, browser, browser_view, display_mode) {}
 |