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

Unified Diff: chrome/browser/task_manager/panel_information.cc

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/panel_information.h ('k') | chrome/browser/task_manager/printing_information.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/task_manager/panel_information.cc
diff --git a/chrome/browser/task_manager/panel_information.cc b/chrome/browser/task_manager/panel_information.cc
index 3db2f2bdf38d7b04e4ae299c70c010b1df83b276..189b9a649fef630ad506eef4bb28c930b09960e1 100644
--- a/chrome/browser/task_manager/panel_information.cc
+++ b/chrome/browser/task_manager/panel_information.cc
@@ -32,13 +32,13 @@ namespace task_manager {
class PanelResource : public RendererResource {
public:
explicit PanelResource(Panel* panel);
- virtual ~PanelResource();
+ ~PanelResource() override;
// Resource methods:
- virtual Type GetType() const override;
- virtual base::string16 GetTitle() const override;
- virtual gfx::ImageSkia GetIcon() const override;
- virtual content::WebContents* GetWebContents() const override;
+ Type GetType() const override;
+ base::string16 GetTitle() const override;
+ gfx::ImageSkia GetIcon() const override;
+ content::WebContents* GetWebContents() const override;
private:
Panel* panel_;
« no previous file with comments | « chrome/browser/task_manager/panel_information.h ('k') | chrome/browser/task_manager/printing_information.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698