// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/download/public/common/download_save_info.h" namespace download { // static const int64_t DownloadSaveInfo::kLengthFullContent = …; DownloadSaveInfo::DownloadSaveInfo() = default; DownloadSaveInfo::~DownloadSaveInfo() = default; DownloadSaveInfo::DownloadSaveInfo(DownloadSaveInfo&& that) = default; int64_t DownloadSaveInfo::GetStartingFileWriteOffset() const { … } bool DownloadSaveInfo::IsArbitraryRangeRequest() const { … } } // namespace download