| 
									
										
										
										
											2015-04-30 11:31:17 +08:00
										 |  |  | // Copyright (c) 2015 GitHub, Inc.
 | 
					
						
							|  |  |  | // Use of this source code is governed by the MIT license that can be
 | 
					
						
							|  |  |  | // found in the LICENSE file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef ATOM_UTILITY_ATOM_CONTENT_UTILITY_CLIENT_H_
 | 
					
						
							|  |  |  | #define ATOM_UTILITY_ATOM_CONTENT_UTILITY_CLIENT_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 02:23:27 +03:00
										 |  |  | #include <memory>
 | 
					
						
							| 
									
										
										
										
											2019-01-09 16:10:39 -08:00
										 |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2015-04-30 11:31:17 +08:00
										 |  |  | #include <vector>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "base/compiler_specific.h"
 | 
					
						
							|  |  |  | #include "content/public/utility/content_utility_client.h"
 | 
					
						
							| 
									
										
										
										
											2018-10-13 03:57:04 +02:00
										 |  |  | #include "printing/buildflags/buildflags.h"
 | 
					
						
							| 
									
										
										
										
											2015-04-30 11:31:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-13 03:57:04 +02:00
										 |  |  | #if BUILDFLAG(ENABLE_PRINTING) && defined(OS_WIN)
 | 
					
						
							|  |  |  | #include "chrome/utility/printing_handler.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-04-30 11:31:17 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace atom { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class AtomContentUtilityClient : public content::ContentUtilityClient { | 
					
						
							|  |  |  |  public: | 
					
						
							|  |  |  |   AtomContentUtilityClient(); | 
					
						
							|  |  |  |   ~AtomContentUtilityClient() override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-13 03:57:04 +02:00
										 |  |  |   void UtilityThreadStarted() override; | 
					
						
							| 
									
										
										
										
											2017-04-04 20:40:43 -07:00
										 |  |  |   bool OnMessageReceived(const IPC::Message& message) override; | 
					
						
							| 
									
										
										
										
											2019-01-22 03:08:23 +05:30
										 |  |  |   bool HandleServiceRequest( | 
					
						
							| 
									
										
										
										
											2019-01-09 16:10:39 -08:00
										 |  |  |       const std::string& service_name, | 
					
						
							|  |  |  |       service_manager::mojom::ServiceRequest request) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-30 11:31:17 +08:00
										 |  |  |  private: | 
					
						
							| 
									
										
										
										
											2019-01-22 03:08:23 +05:30
										 |  |  |   std::unique_ptr<service_manager::Service> MaybeCreateMainThreadService( | 
					
						
							|  |  |  |       const std::string& service_name, | 
					
						
							|  |  |  |       service_manager::mojom::ServiceRequest request); | 
					
						
							| 
									
										
										
										
											2018-10-13 03:57:04 +02:00
										 |  |  | #if BUILDFLAG(ENABLE_PRINTING) && defined(OS_WIN)
 | 
					
						
							|  |  |  |   std::unique_ptr<printing::PrintingHandler> printing_handler_; | 
					
						
							| 
									
										
										
										
											2017-02-01 13:56:34 +09:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-04-30 11:31:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-13 03:57:04 +02:00
										 |  |  |   bool elevated_; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-30 11:31:17 +08:00
										 |  |  |   DISALLOW_COPY_AND_ASSIGN(AtomContentUtilityClient); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }  // namespace atom
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-20 07:11:38 -07:00
										 |  |  | #endif  // ATOM_UTILITY_ATOM_CONTENT_UTILITY_CLIENT_H_
 |