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

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

Issue 8612007: Add OVERRIDE to chrome/browser/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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_item_model.h
diff --git a/chrome/browser/download/download_item_model.h b/chrome/browser/download/download_item_model.h
index d8327d3033de598d1d88ad4b0059db559f62d9c1..45dc90e4aa30eaa2e0a5e7de5ea8629048166bc3 100644
--- a/chrome/browser/download/download_item_model.h
+++ b/chrome/browser/download/download_item_model.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// 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.
@@ -9,6 +9,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "base/string16.h"
class DownloadItem;
@@ -43,10 +44,10 @@ class DownloadItemModel : public BaseDownloadItemModel {
virtual ~DownloadItemModel() { }
// Cancel the downloading.
- virtual void CancelTask();
+ virtual void CancelTask() OVERRIDE;
// Get downloading status text.
- virtual string16 GetStatusText();
+ virtual string16 GetStatusText() OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(DownloadItemModel);
@@ -61,10 +62,10 @@ class SavePageModel : public BaseDownloadItemModel {
virtual ~SavePageModel() { }
// Cancel the page saving.
- virtual void CancelTask();
+ virtual void CancelTask() OVERRIDE;
// Get page saving status text.
- virtual string16 GetStatusText();
+ virtual string16 GetStatusText() OVERRIDE;
private:
// Saving page management.

Powered by Google App Engine
This is Rietveld 408576698