| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 #include "core/CoreExport.h" | 27 #include "core/CoreExport.h" |
| 28 #include "core/dom/Document.h" | 28 #include "core/dom/Document.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 | 31 |
| 32 class Document; | 32 class Document; |
| 33 class DocumentInit; | 33 class DocumentInit; |
| 34 class DocumentType; | 34 class DocumentType; |
| 35 class ExceptionState; | 35 class ExceptionState; |
| 36 class LocalFrame; | |
| 37 class HTMLDocument; | 36 class HTMLDocument; |
| 38 class KURL; | |
| 39 class XMLDocument; | 37 class XMLDocument; |
| 40 | 38 |
| 41 class CORE_EXPORT DOMImplementation final | 39 class CORE_EXPORT DOMImplementation final |
| 42 : public GarbageCollected<DOMImplementation>, | 40 : public GarbageCollected<DOMImplementation>, |
| 43 public ScriptWrappable { | 41 public ScriptWrappable { |
| 44 DEFINE_WRAPPERTYPEINFO(); | 42 DEFINE_WRAPPERTYPEINFO(); |
| 45 | 43 |
| 46 public: | 44 public: |
| 47 static DOMImplementation* create(Document& document) { | 45 static DOMImplementation* create(Document& document) { |
| 48 return new DOMImplementation(document); | 46 return new DOMImplementation(document); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 77 | 75 |
| 78 private: | 76 private: |
| 79 explicit DOMImplementation(Document&); | 77 explicit DOMImplementation(Document&); |
| 80 | 78 |
| 81 Member<Document> m_document; | 79 Member<Document> m_document; |
| 82 }; | 80 }; |
| 83 | 81 |
| 84 } // namespace blink | 82 } // namespace blink |
| 85 | 83 |
| 86 #endif // DOMImplementation_h | 84 #endif // DOMImplementation_h |
| OLD | NEW |