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

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

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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: chrome/browser/task_manager/child_process_resource_provider.cc
diff --git a/chrome/browser/task_manager/child_process_resource_provider.cc b/chrome/browser/task_manager/child_process_resource_provider.cc
index 070e7a4af86cd7cb0d29a158cd0011f9395b6713..626b970b89d7716505cfdd1632ed46a489157e7b 100644
--- a/chrome/browser/task_manager/child_process_resource_provider.cc
+++ b/chrome/browser/task_manager/child_process_resource_provider.cc
@@ -35,14 +35,14 @@ class ChildProcessResource : public Resource {
virtual ~ChildProcessResource();
// Resource methods:
- virtual base::string16 GetTitle() const OVERRIDE;
- virtual base::string16 GetProfileName() const OVERRIDE;
- virtual gfx::ImageSkia GetIcon() const OVERRIDE;
- virtual base::ProcessHandle GetProcess() const OVERRIDE;
- virtual int GetUniqueChildProcessId() const OVERRIDE;
- virtual Type GetType() const OVERRIDE;
- virtual bool SupportNetworkUsage() const OVERRIDE;
- virtual void SetSupportNetworkUsage() OVERRIDE;
+ virtual base::string16 GetTitle() const override;
+ virtual base::string16 GetProfileName() const override;
+ virtual gfx::ImageSkia GetIcon() const override;
+ virtual base::ProcessHandle GetProcess() const override;
+ virtual int GetUniqueChildProcessId() const override;
+ virtual Type GetType() const override;
+ virtual bool SupportNetworkUsage() const override;
+ virtual void SetSupportNetworkUsage() override;
// Returns the pid of the child process.
int process_id() const { return pid_; }
« no previous file with comments | « chrome/browser/task_manager/child_process_resource_provider.h ('k') | chrome/browser/task_manager/extension_information.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698