35 lines
		
	
	
	
		
			1.2 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			1.2 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
// 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_BROWSER_ATOM_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
 | 
						|
#define ATOM_BROWSER_ATOM_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
 | 
						|
 | 
						|
#include "content/public/browser/resource_dispatcher_host_delegate.h"
 | 
						|
 | 
						|
namespace atom {
 | 
						|
 | 
						|
class AtomResourceDispatcherHostDelegate
 | 
						|
    : public content::ResourceDispatcherHostDelegate {
 | 
						|
 public:
 | 
						|
  AtomResourceDispatcherHostDelegate();
 | 
						|
 | 
						|
  // content::ResourceDispatcherHostDelegate:
 | 
						|
  bool HandleExternalProtocol(
 | 
						|
      const GURL& url,
 | 
						|
      int child_id,
 | 
						|
      const content::ResourceRequestInfo::WebContentsGetter&,
 | 
						|
      bool is_main_frame,
 | 
						|
      ui::PageTransition transition,
 | 
						|
      bool has_user_gesture,
 | 
						|
      content::ResourceContext* resource_context) override;
 | 
						|
  content::ResourceDispatcherHostLoginDelegate* CreateLoginDelegate(
 | 
						|
      net::AuthChallengeInfo* auth_info,
 | 
						|
      net::URLRequest* request) override;
 | 
						|
  std::unique_ptr<net::ClientCertStore> CreateClientCertStore(
 | 
						|
      content::ResourceContext* resource_context) override;
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace atom
 | 
						|
 | 
						|
#endif  // ATOM_BROWSER_ATOM_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
 |