Index: cc/resources/transform_display_item.h |
diff --git a/cc/resources/transform_display_item.h b/cc/resources/transform_display_item.h |
index 1671f49b199168778523ffb0394871b9c705369f..075c03a7d5e6059947d7cb3b7a394d101401c11c 100644 |
--- a/cc/resources/transform_display_item.h |
+++ b/cc/resources/transform_display_item.h |
@@ -17,7 +17,7 @@ namespace cc { |
class CC_EXPORT TransformDisplayItem : public DisplayItem { |
public: |
- virtual ~TransformDisplayItem(); |
+ ~TransformDisplayItem() override; |
static scoped_ptr<TransformDisplayItem> Create( |
const gfx::Transform& transform) { |
@@ -39,7 +39,7 @@ class CC_EXPORT TransformDisplayItem : public DisplayItem { |
class CC_EXPORT EndTransformDisplayItem : public DisplayItem { |
public: |
- virtual ~EndTransformDisplayItem(); |
+ ~EndTransformDisplayItem() override; |
static scoped_ptr<EndTransformDisplayItem> Create() { |
return make_scoped_ptr(new EndTransformDisplayItem()); |