29 lines
1 KiB
C++
29 lines
1 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_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
|
|
#define ATOM_BROWSER_ATOM_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
|
|
|
|
#include "content/public/browser/resource_dispatcher_host_delegate.h"
|
|
|
|
namespace atom {
|
|
|
|
class AtomResourceDispatcherHostDelegate
|
|
: public content::ResourceDispatcherHostDelegate {
|
|
public:
|
|
AtomResourceDispatcherHostDelegate();
|
|
~AtomResourceDispatcherHostDelegate();
|
|
|
|
// content::ResourceDispatcherHostDelegate:
|
|
bool HandleExternalProtocol(const GURL& url,
|
|
int render_process_id,
|
|
int render_view_id,
|
|
bool is_main_frame,
|
|
ui::PageTransition transition,
|
|
bool has_user_gesture) override;
|
|
};
|
|
|
|
} // namespace atom
|
|
|
|
#endif // ATOM_BROWSER_ATOM_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
|