| Index: tests/PDFPrimitivesTest.cpp
|
| diff --git a/tests/PDFPrimitivesTest.cpp b/tests/PDFPrimitivesTest.cpp
|
| index f2bb5f471003e18029d1693d39183f566db5d573..36c803f6d5f769ca0a2b05f11a3368c913416ed2 100644
|
| --- a/tests/PDFPrimitivesTest.cpp
|
| +++ b/tests/PDFPrimitivesTest.cpp
|
| @@ -298,9 +298,9 @@ namespace {
|
| class DummyImageFilter : public SkImageFilter {
|
| public:
|
| DummyImageFilter(bool visited = false) : SkImageFilter(0, NULL), fVisited(visited) {}
|
| - ~DummyImageFilter() SK_OVERRIDE {}
|
| + ~DummyImageFilter() override {}
|
| virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
|
| - SkBitmap* result, SkIPoint* offset) const SK_OVERRIDE {
|
| + SkBitmap* result, SkIPoint* offset) const override {
|
| fVisited = true;
|
| offset->fX = offset->fY = 0;
|
| *result = src;
|
|
|