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

Unified Diff: chrome/browser/download/download_status_updater_delegate.h

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_status_updater_delegate.h
===================================================================
--- chrome/browser/download/download_status_updater_delegate.h (revision 96793)
+++ chrome/browser/download/download_status_updater_delegate.h (working copy)
@@ -1,29 +0,0 @@
-// Copyright (c) 2010 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.
-
-#ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STATUS_UPDATER_DELEGATE_H_
-#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STATUS_UPDATER_DELEGATE_H_
-
-#include "base/basictypes.h"
-
-class DownloadStatusUpdaterDelegate {
- public:
- // Returns true if the progress is known (i.e. we know the final size
- // of all downloads).
- virtual bool IsDownloadProgressKnown() = 0;
-
- // Returns the number of downloads that are in progress.
- virtual int64 GetInProgressDownloadCount() = 0;
-
- // Returns the amount of received data, in bytes.
- virtual int64 GetReceivedDownloadBytes() = 0;
-
- // Returns the final size of all downloads, in bytes.
- virtual int64 GetTotalDownloadBytes() = 0;
-
- protected:
- virtual ~DownloadStatusUpdaterDelegate() {}
-};
-
-#endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_STATUS_UPDATER_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698