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

Unified Diff: content/shell/browser/shell_download_manager_delegate.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
Index: content/shell/browser/shell_download_manager_delegate.h
diff --git a/content/shell/browser/shell_download_manager_delegate.h b/content/shell/browser/shell_download_manager_delegate.h
index 558eb0fe0006fed55b0a03a339e7b45023f79a09..bb1bfa0968949e96beb100f432af9b63d8bb505f 100644
--- a/content/shell/browser/shell_download_manager_delegate.h
+++ b/content/shell/browser/shell_download_manager_delegate.h
@@ -17,18 +17,16 @@ class DownloadManager;
class ShellDownloadManagerDelegate : public DownloadManagerDelegate {
public:
ShellDownloadManagerDelegate();
- virtual ~ShellDownloadManagerDelegate();
+ ~ShellDownloadManagerDelegate() override;
void SetDownloadManager(DownloadManager* manager);
- virtual void Shutdown() override;
- virtual bool DetermineDownloadTarget(
- DownloadItem* download,
- const DownloadTargetCallback& callback) override;
- virtual bool ShouldOpenDownload(
- DownloadItem* item,
- const DownloadOpenDelayedCallback& callback) override;
- virtual void GetNextId(const DownloadIdCallback& callback) override;
+ void Shutdown() override;
+ bool DetermineDownloadTarget(DownloadItem* download,
+ const DownloadTargetCallback& callback) override;
+ bool ShouldOpenDownload(DownloadItem* item,
+ const DownloadOpenDelayedCallback& callback) override;
+ void GetNextId(const DownloadIdCallback& callback) override;
// Inhibits prompting and sets the default download path.
void SetDownloadBehaviorForTesting(
« no previous file with comments | « content/shell/browser/shell_devtools_frontend.h ('k') | content/shell/browser/shell_javascript_dialog_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698