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 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
9 * Copyright (C) 2013 Google Inc. All rights reserved. | 9 * Copyright (C) 2013 Google Inc. All rights reserved. |
10 * | 10 * |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 return *this; | 132 return *this; |
133 } | 133 } |
134 | 134 |
135 DocumentInit& DocumentInit::withNewRegistrationContext() | 135 DocumentInit& DocumentInit::withNewRegistrationContext() |
136 { | 136 { |
137 ASSERT(!m_createNewRegistrationContext && !m_registrationContext); | 137 ASSERT(!m_createNewRegistrationContext && !m_registrationContext); |
138 m_createNewRegistrationContext = true; | 138 m_createNewRegistrationContext = true; |
139 return *this; | 139 return *this; |
140 } | 140 } |
141 | 141 |
142 PassRefPtr<CustomElementRegistrationContext> DocumentInit::registrationContext(D
ocument* document) const | 142 PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> DocumentInit::registrat
ionContext(Document* document) const |
143 { | 143 { |
144 if (!document->isHTMLDocument() && !document->isXHTMLDocument()) | 144 if (!document->isHTMLDocument() && !document->isXHTMLDocument()) |
145 return nullptr; | 145 return nullptr; |
146 | 146 |
147 if (m_createNewRegistrationContext) | 147 if (m_createNewRegistrationContext) |
148 return CustomElementRegistrationContext::create(); | 148 return CustomElementRegistrationContext::create(); |
149 | 149 |
150 return m_registrationContext.get(); | 150 return m_registrationContext.get(); |
151 } | 151 } |
152 | 152 |
153 WeakPtr<Document> DocumentInit::contextDocument() const | 153 WeakPtr<Document> DocumentInit::contextDocument() const |
154 { | 154 { |
155 return m_contextDocument; | 155 return m_contextDocument; |
156 } | 156 } |
157 | 157 |
158 DocumentInit DocumentInit::fromContext(WeakPtr<Document> contextDocument, const
KURL& url) | 158 DocumentInit DocumentInit::fromContext(WeakPtr<Document> contextDocument, const
KURL& url) |
159 { | 159 { |
160 return DocumentInit(url, 0, contextDocument, 0); | 160 return DocumentInit(url, 0, contextDocument, 0); |
161 } | 161 } |
162 | 162 |
163 } // namespace WebCore | 163 } // namespace WebCore |
164 | 164 |
OLD | NEW |