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

Unified Diff: chrome/browser/chromeos/drive/download_handler.h

Issue 817063006: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/drive. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 11 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/chromeos/drive/download_handler.h
diff --git a/chrome/browser/chromeos/drive/download_handler.h b/chrome/browser/chromeos/drive/download_handler.h
index cd4aa10f99fc1227e72a06f792ae437d99b866e6..e853290f3314552e795b4adc9fbe834b7795dc7a 100644
--- a/chrome/browser/chromeos/drive/download_handler.h
+++ b/chrome/browser/chromeos/drive/download_handler.h
@@ -28,7 +28,7 @@ class ResourceEntry;
class DownloadHandler : public AllDownloadItemNotifier::Observer {
public:
explicit DownloadHandler(FileSystemInterface* file_system);
- virtual ~DownloadHandler();
+ ~DownloadHandler() override;
// Utility method to get DownloadHandler with profile.
static DownloadHandler* GetForProfile(Profile* profile);
@@ -75,10 +75,10 @@ class DownloadHandler : public AllDownloadItemNotifier::Observer {
private:
// AllDownloadItemNotifier::Observer overrides:
- virtual void OnDownloadCreated(content::DownloadManager* manager,
- content::DownloadItem* download) override;
- virtual void OnDownloadUpdated(content::DownloadManager* manager,
- content::DownloadItem* download) override;
+ void OnDownloadCreated(content::DownloadManager* manager,
+ content::DownloadItem* download) override;
+ void OnDownloadUpdated(content::DownloadManager* manager,
+ content::DownloadItem* download) override;
// Removes the download.
void RemoveDownload(void* manager_id, int id);
« no previous file with comments | « chrome/browser/chromeos/drive/directory_loader_unittest.cc ('k') | chrome/browser/chromeos/drive/download_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698