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

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

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/renderer_resource.h
diff --git a/chrome/browser/task_manager/renderer_resource.h b/chrome/browser/task_manager/renderer_resource.h
index c35ce765121fdfd4f79d2ad1b989a167fbd45e3a..01720d89881e5b6be95518b30dcecdb472b1aff6 100644
--- a/chrome/browser/task_manager/renderer_resource.h
+++ b/chrome/browser/task_manager/renderer_resource.h
@@ -23,30 +23,30 @@ class RendererResource : public Resource {
virtual ~RendererResource();
// Resource methods:
- virtual base::string16 GetProfileName() const OVERRIDE;
- virtual base::ProcessHandle GetProcess() const OVERRIDE;
- virtual int GetUniqueChildProcessId() const OVERRIDE;
- virtual Type GetType() const OVERRIDE;
- virtual int GetRoutingID() const OVERRIDE;
+ virtual base::string16 GetProfileName() const override;
+ virtual base::ProcessHandle GetProcess() const override;
+ virtual int GetUniqueChildProcessId() const override;
+ virtual Type GetType() const override;
+ virtual int GetRoutingID() const override;
- virtual bool ReportsCacheStats() const OVERRIDE;
+ virtual bool ReportsCacheStats() const override;
virtual blink::WebCache::ResourceTypeStats GetWebCoreCacheStats() const
- OVERRIDE;
- virtual bool ReportsV8MemoryStats() const OVERRIDE;
- virtual size_t GetV8MemoryAllocated() const OVERRIDE;
- virtual size_t GetV8MemoryUsed() const OVERRIDE;
+ override;
+ virtual bool ReportsV8MemoryStats() const override;
+ virtual size_t GetV8MemoryAllocated() const override;
+ virtual size_t GetV8MemoryUsed() const override;
// RenderResources always provide the network usage.
- virtual bool SupportNetworkUsage() const OVERRIDE;
- virtual void SetSupportNetworkUsage() OVERRIDE { }
+ virtual bool SupportNetworkUsage() const override;
+ virtual void SetSupportNetworkUsage() override { }
- virtual void Refresh() OVERRIDE;
+ virtual void Refresh() override;
virtual void NotifyResourceTypeStats(
- const blink::WebCache::ResourceTypeStats& stats) OVERRIDE;
+ const blink::WebCache::ResourceTypeStats& stats) override;
virtual void NotifyV8HeapStats(size_t v8_memory_allocated,
- size_t v8_memory_used) OVERRIDE;
+ size_t v8_memory_used) override;
content::RenderViewHost* render_view_host() const {
return render_view_host_;
« no previous file with comments | « chrome/browser/task_manager/printing_information.cc ('k') | chrome/browser/task_manager/tab_contents_information.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698