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

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

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
« no previous file with comments | « content/browser/download/download_resource_handler.h ('k') | content/browser/download/drag_download_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/drag_download_file.h
diff --git a/content/browser/download/drag_download_file.h b/content/browser/download/drag_download_file.h
index 18228f080ee2ccf676b870ed50070e0c9c8eb547..af35e39e66892849087906eb88b415d3abbf60c8 100644
--- a/content/browser/download/drag_download_file.h
+++ b/content/browser/download/drag_download_file.h
@@ -47,20 +47,20 @@ class CONTENT_EXPORT DragDownloadFile
// DownloadFileProvider methods.
// Called on drag-and-drop thread (Windows).
// Called on UI thread (MacOSX).
- virtual bool Start(ui::DownloadFileObserver* observer);
- virtual void Stop();
+ virtual bool Start(ui::DownloadFileObserver* observer) OVERRIDE;
+ virtual void Stop() OVERRIDE;
#if defined(OS_WIN)
virtual IStream* GetStream() { return NULL; }
#endif
// DownloadManager::Observer methods.
// Called on UI thread.
- virtual void ModelChanged();
+ virtual void ModelChanged() OVERRIDE;
// DownloadItem::Observer methods.
// Called on UI thread.
- virtual void OnDownloadUpdated(DownloadItem* download);
- virtual void OnDownloadOpened(DownloadItem* download) { }
+ virtual void OnDownloadUpdated(DownloadItem* download) OVERRIDE;
+ virtual void OnDownloadOpened(DownloadItem* download) OVERRIDE { }
private:
// Called on drag-and-drop thread (Windows).
« no previous file with comments | « content/browser/download/download_resource_handler.h ('k') | content/browser/download/drag_download_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698