Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(422)

Unified Diff: Source/core/css/Rect.h

Issue 189543014: Ensure proper finalization of garbage-collected types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase and sign error in Vector Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/MediaQueryMatcher.cpp ('k') | Source/core/css/Rect.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/Rect.h
diff --git a/Source/core/css/Rect.h b/Source/core/css/Rect.h
index 71417e0da25f7043802a9cca7bc953dae467622f..2f9e08e4a6dd2436aa9761bfe4a75e62c96aaaa1 100644
--- a/Source/core/css/Rect.h
+++ b/Source/core/css/Rect.h
@@ -28,6 +28,7 @@
namespace WebCore {
class RectBase : public RefCountedWillBeGarbageCollected<RectBase> {
+ DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(RectBase);
public:
CSSPrimitiveValue* top() const { return m_top.get(); }
CSSPrimitiveValue* right() const { return m_right.get(); }
@@ -49,8 +50,6 @@ public:
void trace(Visitor*);
- ~RectBase() { }
-
protected:
RectBase() { }
RectBase(const RectBase& cloneFrom)
« no previous file with comments | « Source/core/css/MediaQueryMatcher.cpp ('k') | Source/core/css/Rect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698