 56b904947b
			
		
	
	
	56b904947b
	
	
	
		
			
			Chromium crashes when starting a download if a content::DownloadManagerDelegate is not provided. We now provide a default implementation of content::DownloadManagerDelegate which disallows all downloads.
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			186 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			186 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "browser/download_manager_delegate.h"
 | |
| 
 | |
| namespace brightray {
 | |
| 
 | |
| DownloadManagerDelegate::DownloadManagerDelegate() {
 | |
| }
 | |
| 
 | |
| DownloadManagerDelegate::~DownloadManagerDelegate() {
 | |
| }
 | |
| 
 | |
| }
 |