| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Neither the name of Google Inc. nor the names of its | 10 * * Neither the name of Google Inc. nor the names of its |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #include "core/dom/shadow/ElementShadow.h" | 27 #include "core/dom/shadow/ElementShadow.h" |
| 28 | 28 |
| 29 #include "core/css/StyleSheetList.h" | 29 #include "core/css/StyleSheetList.h" |
| 30 #include "core/css/resolver/ScopedStyleResolver.h" | 30 #include "core/css/resolver/ScopedStyleResolver.h" |
| 31 #include "core/dom/StyleChangeReason.h" | 31 #include "core/dom/StyleChangeReason.h" |
| 32 #include "core/dom/shadow/ElementShadowV0.h" | 32 #include "core/dom/shadow/ElementShadowV0.h" |
| 33 #include "core/frame/Deprecation.h" | 33 #include "core/frame/Deprecation.h" |
| 34 #include "core/inspector/InspectorInstrumentation.h" | 34 #include "core/probe/CoreProbes.h" |
| 35 #include "platform/EventDispatchForbiddenScope.h" | 35 #include "platform/EventDispatchForbiddenScope.h" |
| 36 #include "platform/ScriptForbiddenScope.h" | 36 #include "platform/ScriptForbiddenScope.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 ElementShadow* ElementShadow::create() { | 40 ElementShadow* ElementShadow::create() { |
| 41 return new ElementShadow(); | 41 return new ElementShadow(); |
| 42 } | 42 } |
| 43 | 43 |
| 44 ElementShadow::ElementShadow() | 44 ElementShadow::ElementShadow() |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 visitor->trace(m_elementShadowV0); | 163 visitor->trace(m_elementShadowV0); |
| 164 visitor->trace(m_shadowRoot); | 164 visitor->trace(m_shadowRoot); |
| 165 } | 165 } |
| 166 | 166 |
| 167 DEFINE_TRACE_WRAPPERS(ElementShadow) { | 167 DEFINE_TRACE_WRAPPERS(ElementShadow) { |
| 168 visitor->traceWrappers(m_elementShadowV0); | 168 visitor->traceWrappers(m_elementShadowV0); |
| 169 visitor->traceWrappers(m_shadowRoot); | 169 visitor->traceWrappers(m_shadowRoot); |
| 170 } | 170 } |
| 171 | 171 |
| 172 } // namespace blink | 172 } // namespace blink |
| OLD | NEW |