summaryrefslogtreecommitdiffstats
path: root/net/base/network_delegate.cc
blob: 17da7a8ea04b23eab8126609e905e6b4648c5f68 (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
42
43
// Copyright (c) 2011 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.

#include "net/base/network_delegate.h"

#include "base/logging.h"

namespace net {

bool NetworkDelegate::NotifyBeforeURLRequest(URLRequest* request,
                                             CompletionCallback* callback) {
  DCHECK(CalledOnValidThread());
  DCHECK(request);
  DCHECK(callback);
  return OnBeforeURLRequest(request, callback);
}

void NetworkDelegate::NotifySendHttpRequest(HttpRequestHeaders* headers) {
  DCHECK(CalledOnValidThread());
  DCHECK(headers);
  OnSendHttpRequest(headers);
}

void NetworkDelegate::NotifyResponseStarted(URLRequest* request) {
  DCHECK(CalledOnValidThread());
  DCHECK(request);
  OnResponseStarted(request);
}

void NetworkDelegate::NotifyReadCompleted(URLRequest* request, int bytes_read) {
  DCHECK(CalledOnValidThread());
  DCHECK(request);
  OnReadCompleted(request, bytes_read);
}

URLRequestJob* NetworkDelegate::MaybeCreateURLRequestJob(URLRequest* request) {
  DCHECK(CalledOnValidThread());
  DCHECK(request);
  return OnMaybeCreateURLRequestJob(request);
}

}  // namespace net