aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/xps
diff options
context:
space:
mode:
Diffstat (limited to 'src/xps')
-rw-r--r--src/xps/SkXPSDevice.h2
-rw-r--r--src/xps/SkXPSDocument.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/xps/SkXPSDevice.h b/src/xps/SkXPSDevice.h
index 7aa60a0830..a5ee07634c 100644
--- a/src/xps/SkXPSDevice.h
+++ b/src/xps/SkXPSDevice.h
@@ -39,7 +39,7 @@
class SkXPSDevice : public SkClipStackDevice {
public:
SK_API SkXPSDevice(SkISize);
- SK_API virtual ~SkXPSDevice();
+ SK_API ~SkXPSDevice() override;
bool beginPortfolio(SkWStream* outputStream, IXpsOMObjectFactory*);
/**
diff --git a/src/xps/SkXPSDocument.h b/src/xps/SkXPSDocument.h
index cccfc1f777..f436db1c42 100644
--- a/src/xps/SkXPSDocument.h
+++ b/src/xps/SkXPSDocument.h
@@ -21,7 +21,7 @@
class SkXPSDocument final : public SkDocument {
public:
SkXPSDocument(SkWStream*, SkScalar dpi, SkTScopedComPtr<IXpsOMObjectFactory>);
- virtual ~SkXPSDocument();
+ ~SkXPSDocument() override;
protected:
SkCanvas* onBeginPage(SkScalar w, SkScalar h) override;