| 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 #ifndef DocumentXSLT_h | 5 #ifndef DocumentXSLT_h |
| 6 #define DocumentXSLT_h | 6 #define DocumentXSLT_h |
| 7 | 7 |
| 8 #include "core/dom/DocumentSupplementable.h" | 8 #include "core/dom/DocumentSupplementable.h" |
| 9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 10 #include "wtf/RefPtr.h" | 10 #include "wtf/RefPtr.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class Document; | 14 class Document; |
| 15 class EventListener; | |
| 16 class ExecutionContext; | |
| 17 class ProcessingInstruction; | 15 class ProcessingInstruction; |
| 18 | 16 |
| 19 class DocumentXSLT final : public NoBaseWillBeGarbageCollected<DocumentXSLT>, pu
blic DocumentSupplement { | 17 class DocumentXSLT final : public NoBaseWillBeGarbageCollected<DocumentXSLT>, pu
blic DocumentSupplement { |
| 20 WTF_MAKE_NONCOPYABLE(DocumentXSLT); | 18 WTF_MAKE_NONCOPYABLE(DocumentXSLT); |
| 21 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DocumentXSLT); | 19 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DocumentXSLT); |
| 22 public: | 20 public: |
| 23 Document* transformSourceDocument() | 21 Document* transformSourceDocument() |
| 24 { | 22 { |
| 25 return m_transformSourceDocument.get(); | 23 return m_transformSourceDocument.get(); |
| 26 } | 24 } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 47 | 45 |
| 48 private: | 46 private: |
| 49 DocumentXSLT(); | 47 DocumentXSLT(); |
| 50 | 48 |
| 51 RefPtrWillBeMember<Document> m_transformSourceDocument; | 49 RefPtrWillBeMember<Document> m_transformSourceDocument; |
| 52 }; | 50 }; |
| 53 | 51 |
| 54 } // namespace blink | 52 } // namespace blink |
| 55 | 53 |
| 56 #endif | 54 #endif |
| OLD | NEW |