OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "core/dom/custom/CustomElementDefinition.h" | 5 #include "core/dom/custom/CustomElementDefinition.h" |
6 | 6 |
7 namespace blink { | 7 namespace blink { |
8 | 8 |
9 CustomElementDefinition::CustomElementDefinition( | 9 CustomElementDefinition::CustomElementDefinition( |
10 const CustomElementDescriptor& descriptor) | 10 const CustomElementDescriptor& descriptor) |
11 : m_descriptor(descriptor) | 11 : m_descriptor(descriptor) |
12 { | 12 { |
13 } | 13 } |
14 | 14 |
15 CustomElementDefinition::~CustomElementDefinition() | 15 CustomElementDefinition::~CustomElementDefinition() |
16 { | 16 { |
17 } | 17 } |
18 | 18 |
| 19 DEFINE_TRACE(CustomElementDefinition) |
| 20 { |
| 21 visitor->trace(m_constructionStack); |
| 22 } |
| 23 |
19 } // namespace blink | 24 } // namespace blink |
OLD | NEW |