mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			980 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			980 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.
 | 
						|
 | 
						|
#ifndef CEF_LIBCEF_BROWSER_CHROME_VIEWS_TOOLBAR_VIEW_VIEW_H_
 | 
						|
#define CEF_LIBCEF_BROWSER_CHROME_VIEWS_TOOLBAR_VIEW_VIEW_H_
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "libcef/browser/views/view_view.h"
 | 
						|
 | 
						|
#include "chrome/browser/ui/views/toolbar/toolbar_view.h"
 | 
						|
 | 
						|
class CefToolbarViewView : public CefViewView<ToolbarView, CefViewDelegate> {
 | 
						|
 public:
 | 
						|
  typedef CefViewView<ToolbarView, CefViewDelegate> ParentClass;
 | 
						|
 | 
						|
  // |cef_delegate| may be nullptr.
 | 
						|
  explicit CefToolbarViewView(CefViewDelegate* cef_delegate,
 | 
						|
                              Browser* browser,
 | 
						|
                              BrowserView* browser_view,
 | 
						|
                              absl::optional<DisplayMode> display_mode);
 | 
						|
 | 
						|
 private:
 | 
						|
  DISALLOW_COPY_AND_ASSIGN(CefToolbarViewView);
 | 
						|
};
 | 
						|
 | 
						|
#endif  // CEF_LIBCEF_BROWSER_CHROME_VIEWS_TOOLBAR_VIEW_VIEW_H_
 |