OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/url_request/url_fetcher_delegate.h" | 5 #include "net/url_request/url_fetcher_delegate.h" |
6 | 6 |
7 namespace net { | 7 namespace net { |
8 | 8 |
9 void URLFetcherDelegate::OnURLFetchDownloadProgress(const URLFetcher* source, | 9 void URLFetcherDelegate::OnURLFetchDownloadProgress( |
10 int64_t current, | 10 const URLFetcher* source, |
11 int64_t total) {} | 11 int64_t current, |
| 12 int64_t total, |
| 13 int64_t current_network_bytes) {} |
12 | 14 |
13 void URLFetcherDelegate::OnURLFetchUploadProgress(const URLFetcher* source, | 15 void URLFetcherDelegate::OnURLFetchUploadProgress(const URLFetcher* source, |
14 int64_t current, | 16 int64_t current, |
15 int64_t total) {} | 17 int64_t total) {} |
16 | 18 |
17 URLFetcherDelegate::~URLFetcherDelegate() {} | 19 URLFetcherDelegate::~URLFetcherDelegate() {} |
18 | 20 |
19 } // namespace net | 21 } // namespace net |
OLD | NEW |