| 
									
										
										
										
											2014-10-31 11:17:05 -07:00
										 |  |  | // Copyright (c) 2013 GitHub, Inc.
 | 
					
						
							| 
									
										
										
										
											2014-04-25 17:49:37 +08:00
										 |  |  | // Use of this source code is governed by the MIT license that can be
 | 
					
						
							| 
									
										
										
										
											2013-04-16 00:25:08 +08:00
										 |  |  | // found in the LICENSE file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
 | 
					
						
							|  |  |  | #define ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-14 12:16:13 -07:00
										 |  |  | #include <string>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-16 00:25:08 +08:00
										 |  |  | #include "brightray/browser/browser_context.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace atom { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | class AtomDownloadManagerDelegate; | 
					
						
							| 
									
										
										
										
											2014-08-13 17:40:31 +08:00
										 |  |  | class AtomURLRequestJobFactory; | 
					
						
							| 
									
										
										
										
											2014-10-22 22:55:13 +08:00
										 |  |  | class WebViewManager; | 
					
						
							| 
									
										
										
										
											2013-09-20 16:47:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-16 00:25:08 +08:00
										 |  |  | class AtomBrowserContext : public brightray::BrowserContext { | 
					
						
							|  |  |  |  public: | 
					
						
							| 
									
										
										
										
											2015-09-05 20:54:36 +08:00
										 |  |  |   AtomBrowserContext(const std::string& partition, bool in_memory); | 
					
						
							|  |  |  |   ~AtomBrowserContext() override; | 
					
						
							| 
									
										
										
										
											2015-10-19 13:12:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-20 15:30:32 +08:00
										 |  |  |   // brightray::URLRequestContextGetter::Delegate:
 | 
					
						
							| 
									
										
										
										
											2015-07-14 11:40:07 -07:00
										 |  |  |   std::string GetUserAgent() override; | 
					
						
							| 
									
										
										
										
											2014-12-15 17:15:56 -08:00
										 |  |  |   net::URLRequestJobFactory* CreateURLRequestJobFactory( | 
					
						
							| 
									
										
										
										
											2014-08-13 17:40:31 +08:00
										 |  |  |       content::ProtocolHandlerMap* handlers, | 
					
						
							| 
									
										
										
										
											2014-10-22 22:55:13 +08:00
										 |  |  |       content::URLRequestInterceptorScopedVector* interceptors) override; | 
					
						
							| 
									
										
										
										
											2015-01-05 13:40:38 -08:00
										 |  |  |   net::HttpCache::BackendFactory* CreateHttpCacheBackendFactory( | 
					
						
							|  |  |  |       const base::FilePath& base_path) override; | 
					
						
							| 
									
										
										
										
											2015-09-21 22:13:32 +05:30
										 |  |  |   net::SSLConfigService* CreateSSLConfigService() override; | 
					
						
							| 
									
										
										
										
											2015-10-19 13:03:20 -07:00
										 |  |  |   bool AllowNTLMCredentialsForDomain(const GURL& auth_origin) override; | 
					
						
							| 
									
										
										
										
											2014-10-22 22:55:13 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // content::BrowserContext:
 | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  |   content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; | 
					
						
							| 
									
										
										
										
											2014-12-15 17:15:56 -08:00
										 |  |  |   content::BrowserPluginGuestManager* GetGuestManager() override; | 
					
						
							| 
									
										
										
										
											2015-07-27 09:09:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-29 14:03:07 +08:00
										 |  |  |   // brightray::BrowserContext:
 | 
					
						
							| 
									
										
										
										
											2015-07-26 16:17:55 +08:00
										 |  |  |   void RegisterPrefs(PrefRegistrySimple* pref_registry) override; | 
					
						
							| 
									
										
										
										
											2015-10-19 13:12:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-19 13:07:14 -07:00
										 |  |  |   void AllowNTLMCredentialsForAllDomains(bool should_allow); | 
					
						
							| 
									
										
										
										
											2013-09-20 16:47:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-23 23:08:48 +08:00
										 |  |  |   AtomURLRequestJobFactory* job_factory() const { return job_factory_; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-16 00:25:08 +08:00
										 |  |  |  private: | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  |   scoped_ptr<AtomDownloadManagerDelegate> download_manager_delegate_; | 
					
						
							| 
									
										
										
										
											2014-10-22 22:55:13 +08:00
										 |  |  |   scoped_ptr<WebViewManager> guest_manager_; | 
					
						
							| 
									
										
										
										
											2014-08-21 15:45:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 20:54:36 +08:00
										 |  |  |   // Managed by brightray::BrowserContext.
 | 
					
						
							|  |  |  |   AtomURLRequestJobFactory* job_factory_; | 
					
						
							| 
									
										
										
										
											2015-10-19 13:12:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-19 13:03:20 -07:00
										 |  |  |   bool allow_ntlm_everywhere_; | 
					
						
							| 
									
										
										
										
											2013-09-20 16:47:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-16 00:25:08 +08:00
										 |  |  |   DISALLOW_COPY_AND_ASSIGN(AtomBrowserContext); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }  // namespace atom
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  // ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
 |