Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2789)

Unified Diff: chrome/browser/download/download_types.cc

Issue 7618048: Move the core download files to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/download/download_types.cc
===================================================================
--- chrome/browser/download/download_types.cc (revision 96793)
+++ chrome/browser/download/download_types.cc (working copy)
@@ -1,30 +0,0 @@
-// 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 "chrome/browser/download/download_types.h"
-
-DownloadBuffer::DownloadBuffer() {
-}
-
-DownloadBuffer::~DownloadBuffer() {
-}
-
-DownloadSaveInfo::DownloadSaveInfo() {
-}
-
-DownloadSaveInfo::DownloadSaveInfo(const DownloadSaveInfo& info)
- : file_path(info.file_path),
- file_stream(info.file_stream),
- suggested_name(info.suggested_name) {
-}
-
-DownloadSaveInfo::~DownloadSaveInfo() {
-}
-
-DownloadSaveInfo& DownloadSaveInfo::operator=(const DownloadSaveInfo& info) {
- file_path = info.file_path;
- file_stream = info.file_stream;
- suggested_name = info.suggested_name;
- return *this;
-}

Powered by Google App Engine
This is Rietveld 408576698