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

Unified Diff: Source/core/page/PrintContextTest.cpp

Issue 634883002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/page (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.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 | « Source/core/page/PointerLockController.h ('k') | Source/core/page/ScopedPageLoadDeferrer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/PrintContextTest.cpp
diff --git a/Source/core/page/PrintContextTest.cpp b/Source/core/page/PrintContextTest.cpp
index 3face6c9af81eeb490ce4bdea0188cefe990e513..21c5a64d9385f4b10b8c43cda833c4459a93b8dd 100644
--- a/Source/core/page/PrintContextTest.cpp
+++ b/Source/core/page/PrintContextTest.cpp
@@ -42,14 +42,14 @@ public:
MockCanvas() : SkCanvas(kPageWidth, kPageHeight) { }
- virtual void drawRect(const SkRect& rect, const SkPaint& paint) OVERRIDE
+ virtual void drawRect(const SkRect& rect, const SkPaint& paint) override
{
ASSERT_TRUE(paint.getAnnotation());
Operation operation = { DrawRect, rect };
m_recordedOperations.append(operation);
}
- virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[], const SkPaint& paint) OVERRIDE
+ virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[], const SkPaint& paint) override
{
ASSERT_EQ(1u, count); // Only called from drawPoint().
ASSERT_TRUE(paint.getAnnotation());
« no previous file with comments | « Source/core/page/PointerLockController.h ('k') | Source/core/page/ScopedPageLoadDeferrer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698