Index: Source/platform/fonts/FontCacheTest.cpp |
diff --git a/Source/platform/fonts/FontCacheTest.cpp b/Source/platform/fonts/FontCacheTest.cpp |
index c982fd6fc0de9e8ac4a554516303f47ba7e0df17..e29ecb6a423a6b19eaa292104d36f6f44645bc43 100644 |
--- a/Source/platform/fonts/FontCacheTest.cpp |
+++ b/Source/platform/fonts/FontCacheTest.cpp |
@@ -14,9 +14,9 @@ namespace blink { |
class EmptyPlatform : public Platform { |
public: |
- EmptyPlatform() { } |
- virtual ~EmptyPlatform() { } |
- virtual void cryptographicallyRandomValues(unsigned char* buffer, size_t length) override { } |
+ EmptyPlatform() {} |
+ ~EmptyPlatform() override {} |
+ void cryptographicallyRandomValues(unsigned char* buffer, size_t length) override { } |
}; |
TEST(FontCache, getLastResortFallbackFont) |