Index: Source/core/frame/BarProp.h |
diff --git a/Source/core/frame/BarProp.h b/Source/core/frame/BarProp.h |
index a6ea89e2115faa3ea376f9252a6c0a0abe94bd36..b75267d763f3cd621acd82914bf1b5af8c1eb2af 100644 |
--- a/Source/core/frame/BarProp.h |
+++ b/Source/core/frame/BarProp.h |
@@ -39,8 +39,9 @@ namespace blink { |
class LocalFrame; |
-class BarProp FINAL : public RefCountedWillBeGarbageCollectedFinalized<BarProp>, public ScriptWrappable, public DOMWindowProperty { |
+class BarProp FINAL : public RefCountedWillBeGarbageCollected<BarProp>, public ScriptWrappable, public DOMWindowProperty { |
DEFINE_WRAPPERTYPEINFO(); |
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(BarProp); |
public: |
enum Type { Locationbar, Menubar, Personalbar, Scrollbars, Statusbar, Toolbar }; |
@@ -51,7 +52,7 @@ public: |
bool visible() const; |
- void trace(Visitor*) { } |
+ virtual void trace(Visitor*) OVERRIDE; |
private: |
BarProp(LocalFrame*, Type); |