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

Unified Diff: athena/resource_manager/delegate/resource_manager_delegate.cc

Issue 623103002: replace OVERRIDE and FINAL with override and final in athena/ (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
« no previous file with comments | « athena/main/url_search_provider.cc ('k') | athena/resource_manager/memory_pressure_notifier_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/resource_manager/delegate/resource_manager_delegate.cc
diff --git a/athena/resource_manager/delegate/resource_manager_delegate.cc b/athena/resource_manager/delegate/resource_manager_delegate.cc
index e58aaacdefeb4278c03662fd406ba0138741d2d9..6b68594db2b1e12855985c6dd2307ffcaec96991 100644
--- a/athena/resource_manager/delegate/resource_manager_delegate.cc
+++ b/athena/resource_manager/delegate/resource_manager_delegate.cc
@@ -24,7 +24,7 @@ class ResourceManagerDelegateImpl : public ResourceManagerDelegate {
virtual ~ResourceManagerDelegateImpl() {}
private:
- virtual int GetUsedMemoryInPercent() OVERRIDE {
+ virtual int GetUsedMemoryInPercent() override {
base::SystemMemoryInfoKB info;
if (!base::GetSystemMemoryInfo(&info)) {
LOG(WARNING) << "Cannot determine the free memory of the system.";
@@ -61,7 +61,7 @@ class ResourceManagerDelegateImpl : public ResourceManagerDelegate {
return percentage;
}
- virtual int MemoryPressureIntervalInMS() OVERRIDE {
+ virtual int MemoryPressureIntervalInMS() override {
return kMemoryPressureIntervalMs;
}
DISALLOW_COPY_AND_ASSIGN(ResourceManagerDelegateImpl);
« no previous file with comments | « athena/main/url_search_provider.cc ('k') | athena/resource_manager/memory_pressure_notifier_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698