1 // Copyright 2019 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 #include "components/download/public/background_service/client.h"
6 
7 namespace download {
8 
OnDownloadStarted(const std::string & guid,const std::vector<GURL> & url_chain,const scoped_refptr<const net::HttpResponseHeaders> & headers)9 void Client::OnDownloadStarted(
10     const std::string& guid,
11     const std::vector<GURL>& url_chain,
12     const scoped_refptr<const net::HttpResponseHeaders>& headers) {}
13 
OnDownloadUpdated(const std::string & guid,uint64_t bytes_uploaded,uint64_t bytes_downloaded)14 void Client::OnDownloadUpdated(const std::string& guid,
15                                uint64_t bytes_uploaded,
16                                uint64_t bytes_downloaded) {}
17 
OnDownloadFailed(const std::string & guid,const download::CompletionInfo & completion_info,download::Client::FailureReason reason)18 void Client::OnDownloadFailed(const std::string& guid,
19                               const download::CompletionInfo& completion_info,
20                               download::Client::FailureReason reason) {}
21 
22 }  // namespace download
23