OLD | NEW |
---|---|
(Empty) | |
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. | |
4 | |
5 #ifndef CHROMECAST_BROWSER_CAST_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | |
6 #define CHROMECAST_BROWSER_CAST_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "content/public/browser/resource_dispatcher_host_delegate.h" | |
10 | |
11 namespace chromecast { | |
12 namespace shell { | |
13 | |
14 class CastResourceDispatcherHostDelegate | |
15 : public content::ResourceDispatcherHostDelegate { | |
16 public: | |
17 CastResourceDispatcherHostDelegate() {} | |
18 | |
19 // content::ResourceDispatcherHostDelegate implementation. | |
gunsch
2015/02/20 01:56:03
nit: prefer "implementation:"
derekjchow1
2015/02/20 02:24:16
Done.
| |
20 void RequestComplete(net::URLRequest* url_request) override; | |
21 | |
22 private: | |
23 DISALLOW_COPY_AND_ASSIGN(CastResourceDispatcherHostDelegate); | |
24 }; | |
25 | |
26 } // namespace shell | |
27 } // namespace chromecast | |
28 | |
29 #endif // CHROMECAST_BROWSER_CAST_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | |
OLD | NEW |