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

Unified Diff: chrome/browser/task_manager/panel_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 | « chrome/browser/task_manager/guest_information.cc ('k') | chrome/browser/task_manager/panel_information.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/task_manager/panel_information.h
diff --git a/chrome/browser/task_manager/panel_information.h b/chrome/browser/task_manager/panel_information.h
index 91a1e7cb8b481fbb16ef82a4c1d5aaaf7966c1e7..c5b53249a58975dc3c524de5a07e1d698526d3f1 100644
--- a/chrome/browser/task_manager/panel_information.h
+++ b/chrome/browser/task_manager/panel_information.h
@@ -16,12 +16,12 @@ class PanelResource;
class PanelInformation : public NotificationObservingWebContentsInformation {
public:
PanelInformation();
- virtual ~PanelInformation();
+ ~PanelInformation() 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 | « chrome/browser/task_manager/guest_information.cc ('k') | chrome/browser/task_manager/panel_information.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698