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

Unified Diff: Source/platform/TestingPlatformSupport.h

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix 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 | « Source/platform/Task.h ('k') | Source/platform/Timer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/TestingPlatformSupport.h
diff --git a/Source/platform/TestingPlatformSupport.h b/Source/platform/TestingPlatformSupport.h
index 6ad7e7a64faec41dbd5fe6615c16bb95e9d0d596..51d17841390cd5942b6399db39be458859d98c85 100644
--- a/Source/platform/TestingPlatformSupport.h
+++ b/Source/platform/TestingPlatformSupport.h
@@ -43,9 +43,9 @@ public:
virtual ~TestingDiscardableMemory();
// WebDiscardableMemory:
- virtual bool lock() OVERRIDE;
- virtual void* data() OVERRIDE;
- virtual void unlock() OVERRIDE;
+ virtual bool lock() override;
+ virtual void* data() override;
+ virtual void unlock() override;
private:
Vector<char> m_data;
@@ -65,9 +65,9 @@ public:
virtual ~TestingPlatformSupport();
// Platform:
- virtual WebDiscardableMemory* allocateAndLockDiscardableMemory(size_t bytes) OVERRIDE;
- virtual void cryptographicallyRandomValues(unsigned char* buffer, size_t length) OVERRIDE;
- virtual const unsigned char* getTraceCategoryEnabledFlag(const char* categoryName) OVERRIDE;
+ virtual WebDiscardableMemory* allocateAndLockDiscardableMemory(size_t bytes) override;
+ virtual void cryptographicallyRandomValues(unsigned char* buffer, size_t length) override;
+ virtual const unsigned char* getTraceCategoryEnabledFlag(const char* categoryName) override;
private:
const Config m_config;
« no previous file with comments | « Source/platform/Task.h ('k') | Source/platform/Timer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698