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

Unified Diff: content/browser/download/download_status_updater_unittest.cc

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 | « content/browser/download/download_status_updater_delegate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/download_status_updater_unittest.cc
diff --git a/content/browser/download/download_status_updater_unittest.cc b/content/browser/download/download_status_updater_unittest.cc
index d68b384f035cefc053d730a030e008d701f84f65..1de5763d0ecf12f5934760ce328f44a92d8f99cf 100644
--- a/content/browser/download/download_status_updater_unittest.cc
+++ b/content/browser/download/download_status_updater_unittest.cc
@@ -30,19 +30,19 @@ class MockDelegate : public DownloadStatusUpdaterDelegate {
}
// Overriden from DownloadStatusUpdaterDelegate:
- virtual bool IsDownloadProgressKnown() {
+ virtual bool IsDownloadProgressKnown() const OVERRIDE {
return is_download_progress_known_;
}
- virtual int64 GetInProgressDownloadCount() {
+ virtual int64 GetInProgressDownloadCount() const OVERRIDE {
return in_progress_download_count_;
}
- virtual int64 GetReceivedDownloadBytes() {
+ virtual int64 GetReceivedDownloadBytes() const OVERRIDE {
return received_bytes_;
}
- virtual int64 GetTotalDownloadBytes() {
+ virtual int64 GetTotalDownloadBytes() const OVERRIDE {
return total_bytes_;
}
« no previous file with comments | « content/browser/download/download_status_updater_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698