Index: ui/gfx/size_base.h |
diff --git a/ui/gfx/size_base.h b/ui/gfx/size_base.h |
index 590989ec8dd31ca566bba808ae9443302dc99b83..a4e494442fc1bdc3d678fade716c9315af3903b2 100644 |
--- a/ui/gfx/size_base.h |
+++ b/ui/gfx/size_base.h |
@@ -59,7 +59,9 @@ class UI_EXPORT SizeBase { |
protected: |
SizeBase(Type width, Type height); |
- virtual ~SizeBase(); |
+ // Destructor is intentionally made non virtual and protected. |
+ // Do not make this public. |
+ ~SizeBase(); |
private: |
Type width_; |