cc: Remove implicit conversions from Rect to RectF in src/cc/.
[chromium-blink-merge.git] / chromecast / browser / cast_resource_dispatcher_host_delegate.h
blob8295ccd070683118e8c4cce829972b89371aa751
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 {
12 namespace shell {
14 class CastResourceDispatcherHostDelegate
15 : public content::ResourceDispatcherHostDelegate {
16 public:
17 CastResourceDispatcherHostDelegate() {}
19 // content::ResourceDispatcherHostDelegate implementation:
20 void RequestComplete(net::URLRequest* url_request) override;
22 private:
23 DISALLOW_COPY_AND_ASSIGN(CastResourceDispatcherHostDelegate);
26 } // namespace shell
27 } // namespace chromecast
29 #endif // CHROMECAST_BROWSER_CAST_RESOURCE_DISPATCHER_HOST_DELEGATE_H_