| 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, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2006 Samuel Weinig (sam@webkit.org) | 6 * Copyright (C) 2006 Samuel Weinig (sam@webkit.org) |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 8 * (http://www.torchmobile.com/) | 8 * (http://www.torchmobile.com/) |
| 9 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 #include "core/html/PluginDocument.h" | 49 #include "core/html/PluginDocument.h" |
| 50 #include "core/html/TextDocument.h" | 50 #include "core/html/TextDocument.h" |
| 51 #include "core/html/media/MediaDocument.h" | 51 #include "core/html/media/MediaDocument.h" |
| 52 #include "core/loader/FrameLoader.h" | 52 #include "core/loader/FrameLoader.h" |
| 53 #include "core/page/Page.h" | 53 #include "core/page/Page.h" |
| 54 #include "platform/graphics/Image.h" | 54 #include "platform/graphics/Image.h" |
| 55 #include "platform/network/mime/ContentType.h" | 55 #include "platform/network/mime/ContentType.h" |
| 56 #include "platform/network/mime/MIMETypeRegistry.h" | 56 #include "platform/network/mime/MIMETypeRegistry.h" |
| 57 #include "platform/plugins/PluginData.h" | 57 #include "platform/plugins/PluginData.h" |
| 58 #include "platform/weborigin/SecurityOrigin.h" | 58 #include "platform/weborigin/SecurityOrigin.h" |
| 59 #include "wtf/StdLibExtras.h" | 59 #include "platform/wtf/StdLibExtras.h" |
| 60 | 60 |
| 61 namespace blink { | 61 namespace blink { |
| 62 | 62 |
| 63 DOMImplementation::DOMImplementation(Document& document) | 63 DOMImplementation::DOMImplementation(Document& document) |
| 64 : document_(document) {} | 64 : document_(document) {} |
| 65 | 65 |
| 66 DocumentType* DOMImplementation::createDocumentType( | 66 DocumentType* DOMImplementation::createDocumentType( |
| 67 const AtomicString& qualified_name, | 67 const AtomicString& qualified_name, |
| 68 const String& public_id, | 68 const String& public_id, |
| 69 const String& system_id, | 69 const String& system_id, |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 return XMLDocument::Create(init); | 282 return XMLDocument::Create(init); |
| 283 | 283 |
| 284 return HTMLDocument::Create(init); | 284 return HTMLDocument::Create(init); |
| 285 } | 285 } |
| 286 | 286 |
| 287 DEFINE_TRACE(DOMImplementation) { | 287 DEFINE_TRACE(DOMImplementation) { |
| 288 visitor->Trace(document_); | 288 visitor->Trace(document_); |
| 289 } | 289 } |
| 290 | 290 |
| 291 } // namespace blink | 291 } // namespace blink |
| OLD | NEW |