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

Unified Diff: content/browser/android/download_controller_android_impl.h

Issue 897773002: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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/android/content_view_statics.cc ('k') | content/browser/android/edge_effect.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/android/download_controller_android_impl.h
diff --git a/content/browser/android/download_controller_android_impl.h b/content/browser/android/download_controller_android_impl.h
index 7bc71bf74e23380f75ac49f00acdcc9b97bbc0e6..227ff5fad303e870f3515df4a1aeda9bbb831b89 100644
--- a/content/browser/android/download_controller_android_impl.h
+++ b/content/browser/android/download_controller_android_impl.h
@@ -73,20 +73,22 @@ class DownloadControllerAndroidImpl : public DownloadControllerAndroid,
struct JavaObject;
friend struct DefaultSingletonTraits<DownloadControllerAndroidImpl>;
DownloadControllerAndroidImpl();
- virtual ~DownloadControllerAndroidImpl();
+ ~DownloadControllerAndroidImpl() override;
// DownloadControllerAndroid implementation.
- virtual void CreateGETDownload(int render_process_id, int render_view_id,
- int request_id) override;
- virtual void OnDownloadStarted(DownloadItem* download_item) override;
- virtual void StartContextMenuDownload(
- const ContextMenuParams& params, WebContents* web_contents,
- bool is_link) override;
- virtual void DangerousDownloadValidated(
- WebContents* web_contents, int download_id, bool accept) override;
+ void CreateGETDownload(int render_process_id,
+ int render_view_id,
+ int request_id) override;
+ void OnDownloadStarted(DownloadItem* download_item) override;
+ void StartContextMenuDownload(const ContextMenuParams& params,
+ WebContents* web_contents,
+ bool is_link) override;
+ void DangerousDownloadValidated(WebContents* web_contents,
+ int download_id,
+ bool accept) override;
// DownloadItem::Observer interface.
- virtual void OnDownloadUpdated(DownloadItem* item) override;
+ void OnDownloadUpdated(DownloadItem* item) override;
typedef base::Callback<void(const DownloadInfoAndroid&)>
GetDownloadInfoCB;
« no previous file with comments | « content/browser/android/content_view_statics.cc ('k') | content/browser/android/edge_effect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698