From 36352bf5e38f45a70ee4f4fc132a38048d38206d Mon Sep 17 00:00:00 2001 From: mtklein Date: Wed, 25 Mar 2015 18:17:31 -0700 Subject: C++11 override should now be supported by all of {bots,Chrome,Android,Mozilla} NOPRESUBMIT=true BUG=skia: DOCS_PREVIEW= https://skia.org/?cl=1037793002 Review URL: https://codereview.chromium.org/1037793002 --- tests/PictureBBHTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/PictureBBHTest.cpp') diff --git a/tests/PictureBBHTest.cpp b/tests/PictureBBHTest.cpp index 771aa1261d..d09403ff14 100644 --- a/tests/PictureBBHTest.cpp +++ b/tests/PictureBBHTest.cpp @@ -62,7 +62,7 @@ public: : PictureBBHTestBase(2, 2, 1, 1) { } virtual ~DrawEmptyPictureBBHTest() { } - void doTest(SkCanvas&, SkCanvas&) SK_OVERRIDE { } + void doTest(SkCanvas&, SkCanvas&) override { } }; // Test to verify the playback of a picture into a canvas that has @@ -73,7 +73,7 @@ public: EmptyClipPictureBBHTest() : PictureBBHTestBase(2, 2, 3, 3) { } - void doTest(SkCanvas& playbackCanvas, SkCanvas& recordingCanvas) SK_OVERRIDE { + void doTest(SkCanvas& playbackCanvas, SkCanvas& recordingCanvas) override { // intersect with out of bounds rect -> empty clip. playbackCanvas.clipRect(SkRect::MakeXYWH(SkIntToScalar(10), SkIntToScalar(10), SkIntToScalar(1), SkIntToScalar(1)), SkRegion::kIntersect_Op); -- cgit v1.2.3