| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef StyleReattachData_h | |
| 6 #define StyleReattachData_h | |
| 7 | |
| 8 namespace blink { | |
| 9 | |
| 10 struct StyleReattachData { | |
| 11 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); | |
| 12 DEFINE_INLINE_TRACE() { visitor->trace(nextTextSibling); } | |
| 13 | |
| 14 RefPtr<ComputedStyle> computedStyle; | |
| 15 Member<Text> nextTextSibling; | |
| 16 }; | |
| 17 | |
| 18 } // namespace blink | |
| 19 | |
| 20 #endif // StyleReattachData_h | |
| OLD | NEW |