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

Unified Diff: chrome/browser/extensions/api/idle/idle_api_unittest.cc

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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/extensions/api/idle/idle_api.h ('k') | chrome/browser/extensions/api/idle/idle_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/idle/idle_api_unittest.cc
diff --git a/chrome/browser/extensions/api/idle/idle_api_unittest.cc b/chrome/browser/extensions/api/idle/idle_api_unittest.cc
index 82779fe70b7cea7cb2ce85d9842b0eaf34652643..52edd522a040b9a858d82a372fd1c2b24ae3c96e 100644
--- a/chrome/browser/extensions/api/idle/idle_api_unittest.cc
+++ b/chrome/browser/extensions/api/idle/idle_api_unittest.cc
@@ -44,9 +44,9 @@ class TestIdleProvider : public IdleManager::IdleTimeProvider {
TestIdleProvider();
virtual ~TestIdleProvider();
virtual void CalculateIdleState(int idle_threshold,
- IdleCallback notify) OVERRIDE;
- virtual void CalculateIdleTime(IdleTimeCallback notify) OVERRIDE;
- virtual bool CheckIdleStateIsLocked() OVERRIDE;
+ IdleCallback notify) override;
+ virtual void CalculateIdleTime(IdleTimeCallback notify) override;
+ virtual bool CheckIdleStateIsLocked() override;
void set_idle_time(int idle_time);
void set_locked(bool locked);
@@ -126,7 +126,7 @@ KeyedService* IdleManagerTestFactory(content::BrowserContext* profile) {
class IdleTest : public ExtensionApiUnittest {
public:
- virtual void SetUp() OVERRIDE;
+ virtual void SetUp() override;
protected:
IdleManager* idle_manager_;
« no previous file with comments | « chrome/browser/extensions/api/idle/idle_api.h ('k') | chrome/browser/extensions/api/idle/idle_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698