| Index: Source/platform/TestingPlatformSupport.h
|
| diff --git a/Source/platform/TestingPlatformSupport.h b/Source/platform/TestingPlatformSupport.h
|
| index c24bff65b01b28de0912faadb45e1b7a8e55a344..bee4dcd85ea2612e44491457d89b3b4671e07f68 100644
|
| --- a/Source/platform/TestingPlatformSupport.h
|
| +++ b/Source/platform/TestingPlatformSupport.h
|
| @@ -40,12 +40,12 @@ namespace blink {
|
| class TestingDiscardableMemory : public WebDiscardableMemory {
|
| public:
|
| explicit TestingDiscardableMemory(size_t);
|
| - virtual ~TestingDiscardableMemory();
|
| + ~TestingDiscardableMemory() override;
|
|
|
| // WebDiscardableMemory:
|
| - virtual bool lock() override;
|
| - virtual void* data() override;
|
| - virtual void unlock() override;
|
| + bool lock() override;
|
| + void* data() override;
|
| + void unlock() override;
|
|
|
| private:
|
| Vector<char> m_data;
|
| @@ -62,13 +62,13 @@ public:
|
|
|
| explicit TestingPlatformSupport(const Config&);
|
|
|
| - virtual ~TestingPlatformSupport();
|
| + ~TestingPlatformSupport() override;
|
|
|
| // 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 WebString defaultLocale() override;
|
| + WebDiscardableMemory* allocateAndLockDiscardableMemory(size_t bytes) override;
|
| + void cryptographicallyRandomValues(unsigned char* buffer, size_t length) override;
|
| + const unsigned char* getTraceCategoryEnabledFlag(const char* categoryName) override;
|
| + WebString defaultLocale() override;
|
|
|
| private:
|
| const Config m_config;
|
|
|