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

Unified Diff: Source/platform/fonts/FontCacheTest.cpp

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/exported/WebURLResponse.cpp ('k') | Source/platform/fonts/GlyphPageTreeNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « Source/platform/exported/WebURLResponse.cpp ('k') | Source/platform/fonts/GlyphPageTreeNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698