blob: f3372ebbd88fce4250adb453f99ab2d06b8d05a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Copyright 2014 The Chromium 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 CHROMECAST_BROWSER_CAST_NETWORK_DELEGATE_H_
#define CHROMECAST_BROWSER_CAST_NETWORK_DELEGATE_H_
#include "net/base/network_delegate_impl.h"
namespace net {
class X509Certificate;
}
namespace chromecast {
namespace shell {
class CastNetworkDelegate : public net::NetworkDelegateImpl {
public:
static CastNetworkDelegate* Create();
static net::X509Certificate* DeviceCert();
CastNetworkDelegate();
~CastNetworkDelegate() override;
virtual void Initialize(bool use_sync_signing) = 0;
virtual bool IsWhitelisted(const GURL& gurl, int render_process_id,
bool for_device_auth) const = 0;
private:
// net::NetworkDelegate implementation:
bool OnCanAccessFile(const net::URLRequest& request,
const base::FilePath& path) const override;
DISALLOW_COPY_AND_ASSIGN(CastNetworkDelegate);
};
} // namespace shell
} // namespace chromecast
#endif // CHROMECAST_BROWSER_CAST_NETWORK_DELEGATE_H_
|