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

Unified Diff: chrome/browser/task_manager/background_information.h

Issue 663023009: Standardize usage of virtual/override/final in chrome/browser/task_manager/ (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
« no previous file with comments | « no previous file | chrome/browser/task_manager/background_information.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/task_manager/background_information.h
diff --git a/chrome/browser/task_manager/background_information.h b/chrome/browser/task_manager/background_information.h
index f6a1df768359697a8c217f9b39029ffe29ed9196..4e2d8a5ae98ab947ff2b37ab5e8cc358a9dfbf0e 100644
--- a/chrome/browser/task_manager/background_information.h
+++ b/chrome/browser/task_manager/background_information.h
@@ -15,12 +15,12 @@ class BackgroundInformation
: public NotificationObservingWebContentsInformation {
public:
BackgroundInformation();
- virtual ~BackgroundInformation();
+ ~BackgroundInformation() override;
// WebContentsInformation implementation.
- virtual bool CheckOwnership(content::WebContents* web_contents) override;
- virtual void GetAll(const NewWebContentsCallback& callback) override;
- virtual scoped_ptr<RendererResource> MakeResource(
+ bool CheckOwnership(content::WebContents* web_contents) override;
+ void GetAll(const NewWebContentsCallback& callback) override;
+ scoped_ptr<RendererResource> MakeResource(
content::WebContents* web_contents) override;
private:
« no previous file with comments | « no previous file | chrome/browser/task_manager/background_information.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698