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

Unified Diff: content/browser/download/download_manager.h

Issue 8381009: Const-ify DownloadStatusUpdaterDelegate methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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
« no previous file with comments | « no previous file | content/browser/download/download_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/download_manager.h
diff --git a/content/browser/download/download_manager.h b/content/browser/download/download_manager.h
index d746fa61d861e3b4d5984d189d1403c10793a548..19717322fe351b9bbe53967991f9260f42b98fb9 100644
--- a/content/browser/download/download_manager.h
+++ b/content/browser/download/download_manager.h
@@ -252,10 +252,10 @@ class CONTENT_EXPORT DownloadManager
void ClearLastDownloadPath();
// Overridden from DownloadStatusUpdaterDelegate:
- virtual bool IsDownloadProgressKnown();
- virtual int64 GetInProgressDownloadCount();
- virtual int64 GetReceivedDownloadBytes();
- virtual int64 GetTotalDownloadBytes();
+ virtual bool IsDownloadProgressKnown() const OVERRIDE;
+ virtual int64 GetInProgressDownloadCount() const OVERRIDE;
+ virtual int64 GetReceivedDownloadBytes() const OVERRIDE;
+ virtual int64 GetTotalDownloadBytes() const OVERRIDE;
// Called by the delegate after the save as dialog is closed.
void FileSelected(const FilePath& path, void* params);
« no previous file with comments | « no previous file | content/browser/download/download_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698