Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(684)

Side by Side Diff: chromecast/browser/cast_resource_dispatcher_host_delegate.h

Issue 925183003: [Chromecast] Add connectivity checking for Chromecast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments in patchset 1 Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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:
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_
OLDNEW
« no previous file with comments | « chromecast/browser/cast_content_browser_client.cc ('k') | chromecast/browser/cast_resource_dispatcher_host_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698