1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROMECAST_BROWSER_CAST_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
6 #define CHROMECAST_BROWSER_CAST_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
8 #include "base/macros.h"
9 #include "content/public/browser/resource_dispatcher_host_delegate.h"
11 namespace chromecast
{
14 class CastResourceDispatcherHostDelegate
15 : public content::ResourceDispatcherHostDelegate
{
17 CastResourceDispatcherHostDelegate() {}
19 // content::ResourceDispatcherHostDelegate implementation:
20 void RequestComplete(net::URLRequest
* url_request
) override
;
23 DISALLOW_COPY_AND_ASSIGN(CastResourceDispatcherHostDelegate
);
27 } // namespace chromecast
29 #endif // CHROMECAST_BROWSER_CAST_RESOURCE_DISPATCHER_HOST_DELEGATE_H_