| 
									
										
										
										
											2013-05-14 14:45:34 +08:00
										 |  |  | // Copyright (c) 2011 The Chromium Authors. All rights reserved.
 | 
					
						
							|  |  |  | // Use of this source code is governed by a BSD-style license that can be
 | 
					
						
							|  |  |  | // found in the LICENSE-CHROMIUM file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-22 08:34:31 +01:00
										 |  |  | #ifndef ELECTRON_SHELL_BROWSER_UI_DEVTOOLS_UI_H_
 | 
					
						
							|  |  |  | #define ELECTRON_SHELL_BROWSER_UI_DEVTOOLS_UI_H_
 | 
					
						
							| 
									
										
										
										
											2013-05-14 14:45:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-28 01:24:05 +05:30
										 |  |  | #include "content/public/browser/browser_context.h"
 | 
					
						
							| 
									
										
										
										
											2013-05-14 14:45:34 +08:00
										 |  |  | #include "content/public/browser/web_ui_controller.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-19 15:50:30 +02:00
										 |  |  | namespace electron { | 
					
						
							| 
									
										
										
										
											2013-05-14 14:45:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class DevToolsUI : public content::WebUIController { | 
					
						
							|  |  |  |  public: | 
					
						
							| 
									
										
										
										
											2015-08-28 01:24:05 +05:30
										 |  |  |   explicit DevToolsUI(content::BrowserContext* browser_context, | 
					
						
							|  |  |  |                       content::WebUI* web_ui); | 
					
						
							| 
									
										
										
										
											2013-05-14 14:45:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-03 12:41:45 +01:00
										 |  |  |   // disable copy
 | 
					
						
							|  |  |  |   DevToolsUI(const DevToolsUI&) = delete; | 
					
						
							|  |  |  |   DevToolsUI& operator=(const DevToolsUI&) = delete; | 
					
						
							| 
									
										
										
										
											2013-05-14 14:45:34 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-19 15:50:30 +02:00
										 |  |  | }  // namespace electron
 | 
					
						
							| 
									
										
										
										
											2013-05-14 14:45:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-22 08:34:31 +01:00
										 |  |  | #endif  // ELECTRON_SHELL_BROWSER_UI_DEVTOOLS_UI_H_
 |