Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Side by Side Diff: Source/core/xml/DocumentXSLT.h

Issue 812873003: Clean up forward declarations in WebKit/Source (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: style fix Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/rendering/RenderQuote.h ('k') | Source/core/xml/XMLSerializer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderQuote.h ('k') | Source/core/xml/XMLSerializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698