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

Unified Diff: athena/test/base/test_resource_manager_delegate.cc

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase 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/test/base/test_app_model_builder.h ('k') | athena/test/chrome/athena_app_browsertest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/test/base/test_resource_manager_delegate.cc
diff --git a/athena/test/base/test_resource_manager_delegate.cc b/athena/test/base/test_resource_manager_delegate.cc
index 5538d60a21472821b04bd9328df46c1f7dbb5cd2..ae771c46fa9873401088bde0e4070d258b74b600 100644
--- a/athena/test/base/test_resource_manager_delegate.cc
+++ b/athena/test/base/test_resource_manager_delegate.cc
@@ -22,14 +22,12 @@ const int kMemoryPressureIntervalMs = 60000;
class ResourceManagerDelegateImpl : public ResourceManagerDelegate {
public:
ResourceManagerDelegateImpl() {}
- virtual ~ResourceManagerDelegateImpl() {}
+ ~ResourceManagerDelegateImpl() override {}
private:
- virtual int GetUsedMemoryInPercent() override {
- return 0;
- }
+ int GetUsedMemoryInPercent() override { return 0; }
- virtual int MemoryPressureIntervalInMS() override {
+ int MemoryPressureIntervalInMS() override {
return kMemoryPressureIntervalMs;
}
DISALLOW_COPY_AND_ASSIGN(ResourceManagerDelegateImpl);
« no previous file with comments | « athena/test/base/test_app_model_builder.h ('k') | athena/test/chrome/athena_app_browsertest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698