summaryrefslogtreecommitdiff
path: root/Source/WebCore/svg/SVGRenderingIntent.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/svg/SVGRenderingIntent.h')
-rw-r--r--Source/WebCore/svg/SVGRenderingIntent.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/Source/WebCore/svg/SVGRenderingIntent.h b/Source/WebCore/svg/SVGRenderingIntent.h
index 230258a6a..422926c20 100644
--- a/Source/WebCore/svg/SVGRenderingIntent.h
+++ b/Source/WebCore/svg/SVGRenderingIntent.h
@@ -17,16 +17,13 @@
* Boston, MA 02110-1301, USA.
*/
-#ifndef SVGRenderingIntent_h
-#define SVGRenderingIntent_h
-
-#if ENABLE(SVG)
+#pragma once
#include <wtf/RefCounted.h>
namespace WebCore {
-class SVGRenderingIntent : public RefCounted<SVGRenderingIntent> {
+class SVGRenderingIntent final : public RefCounted<SVGRenderingIntent> {
public:
enum SVGRenderingIntentType {
RENDERING_INTENT_UNKNOWN = 0,
@@ -42,8 +39,3 @@ private:
};
} // namespace WebCore
-
-#endif // ENABLE(SVG)
-#endif // SVGRenderingIntent_h
-
-// vim:ts=4:noet