Home | History | Annotate | Download | only in download
      1 // Copyright (c) 2010 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 "chrome/browser/download/download_types.h"
      6 
      7 DownloadBuffer::DownloadBuffer() {
      8 }
      9 
     10 DownloadBuffer::~DownloadBuffer() {
     11 }
     12 
     13 DownloadSaveInfo::DownloadSaveInfo() {
     14 }
     15 
     16 DownloadSaveInfo::DownloadSaveInfo(const DownloadSaveInfo& info)
     17     : file_path(info.file_path),
     18       file_stream(info.file_stream) {
     19 }
     20 
     21 DownloadSaveInfo::~DownloadSaveInfo() {
     22 }
     23 
     24 DownloadSaveInfo& DownloadSaveInfo::operator=(const DownloadSaveInfo& info) {
     25   file_path = info.file_path;
     26   file_stream = info.file_stream;
     27   return *this;
     28 }
     29