2012-06-25 23:21:27 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that can
|
|
|
|
// be found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
|
|
|
|
#pragma once
|
|
|
|
|
2013-01-14 20:21:17 +01:00
|
|
|
#include "base/compiler_specific.h"
|
2012-06-25 23:21:27 +02:00
|
|
|
#include "content/public/browser/resource_dispatcher_host_delegate.h"
|
|
|
|
|
|
|
|
// Implements ResourceDispatcherHostDelegate.
|
|
|
|
class CefResourceDispatcherHostDelegate
|
|
|
|
: public content::ResourceDispatcherHostDelegate {
|
|
|
|
public:
|
|
|
|
CefResourceDispatcherHostDelegate();
|
|
|
|
virtual ~CefResourceDispatcherHostDelegate();
|
|
|
|
|
|
|
|
// ResourceDispatcherHostDelegate methods.
|
2012-11-05 21:18:20 +01:00
|
|
|
virtual bool HandleExternalProtocol(const GURL& url,
|
2012-06-25 23:21:27 +02:00
|
|
|
int child_id,
|
|
|
|
int route_id) OVERRIDE;
|
2013-04-18 19:58:23 +02:00
|
|
|
virtual void OnRequestRedirected(
|
|
|
|
const GURL& redirect_url,
|
|
|
|
net::URLRequest* request,
|
|
|
|
content::ResourceContext* resource_context,
|
|
|
|
content::ResourceResponse* response) OVERRIDE;
|
2012-06-25 23:21:27 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefResourceDispatcherHostDelegate);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
|