| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/xml/DocumentXSLT.h" | 5 #include "core/xml/DocumentXSLT.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/DOMWrapperWorld.h" | 7 #include "bindings/core/v8/DOMWrapperWorld.h" |
| 8 #include "bindings/core/v8/ScriptState.h" | 8 #include "bindings/core/v8/ScriptState.h" |
| 9 #include "bindings/core/v8/V8AbstractEventListener.h" | 9 #include "bindings/core/v8/V8AbstractEventListener.h" |
| 10 #include "bindings/core/v8/V8Binding.h" | 10 #include "bindings/core/v8/V8Binding.h" |
| 11 #include "core/dom/Document.h" | 11 #include "core/dom/Document.h" |
| 12 #include "core/dom/Node.h" | 12 #include "core/dom/Node.h" |
| 13 #include "core/dom/ProcessingInstruction.h" | 13 #include "core/dom/ProcessingInstruction.h" |
| 14 #include "core/events/Event.h" | 14 #include "core/events/Event.h" |
| 15 #include "core/events/EventListener.h" | 15 #include "core/events/EventListener.h" |
| 16 #include "core/frame/UseCounter.h" | 16 #include "core/frame/UseCounter.h" |
| 17 #include "core/inspector/InspectorInstrumentation.h" | 17 #include "core/probe/CoreProbes.h" |
| 18 #include "core/xml/XSLStyleSheet.h" | 18 #include "core/xml/XSLStyleSheet.h" |
| 19 #include "core/xml/XSLTProcessor.h" | 19 #include "core/xml/XSLTProcessor.h" |
| 20 | 20 |
| 21 namespace blink { | 21 namespace blink { |
| 22 | 22 |
| 23 class DOMContentLoadedListener final | 23 class DOMContentLoadedListener final |
| 24 : public V8AbstractEventListener, | 24 : public V8AbstractEventListener, |
| 25 public ProcessingInstruction::DetachableEventListener { | 25 public ProcessingInstruction::DetachableEventListener { |
| 26 USING_GARBAGE_COLLECTED_MIXIN(DOMContentLoadedListener); | 26 USING_GARBAGE_COLLECTED_MIXIN(DOMContentLoadedListener); |
| 27 | 27 |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 } | 189 } |
| 190 return *supplement; | 190 return *supplement; |
| 191 } | 191 } |
| 192 | 192 |
| 193 DEFINE_TRACE(DocumentXSLT) { | 193 DEFINE_TRACE(DocumentXSLT) { |
| 194 visitor->trace(m_transformSourceDocument); | 194 visitor->trace(m_transformSourceDocument); |
| 195 Supplement<Document>::trace(visitor); | 195 Supplement<Document>::trace(visitor); |
| 196 } | 196 } |
| 197 | 197 |
| 198 } // namespace blink | 198 } // namespace blink |
| OLD | NEW |