| 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 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #ifndef DocumentInit_h | 28 #ifndef DocumentInit_h |
| 29 #define DocumentInit_h | 29 #define DocumentInit_h |
| 30 | 30 |
| 31 #include "core/CoreExport.h" | 31 #include "core/CoreExport.h" |
| 32 #include "core/dom/SandboxFlags.h" | 32 #include "core/dom/SandboxFlags.h" |
| 33 #include "core/dom/SecurityContext.h" | 33 #include "core/dom/SecurityContext.h" |
| 34 #include "core/dom/custom/V0CustomElementRegistrationContext.h" | 34 #include "core/dom/custom/V0CustomElementRegistrationContext.h" |
| 35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "platform/weborigin/KURL.h" | 36 #include "platform/weborigin/KURL.h" |
| 37 #include "wtf/WeakPtr.h" | |
| 38 | 37 |
| 39 namespace blink { | 38 namespace blink { |
| 40 | 39 |
| 41 class Document; | 40 class Document; |
| 42 class LocalFrame; | 41 class LocalFrame; |
| 43 class HTMLImportsController; | 42 class HTMLImportsController; |
| 44 class Settings; | 43 class Settings; |
| 45 | 44 |
| 46 class CORE_EXPORT DocumentInit final { | 45 class CORE_EXPORT DocumentInit final { |
| 47 STACK_ALLOCATED(); | 46 STACK_ALLOCATED(); |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 // won't be blown away when the network load commits. To make that happen, w
e | 97 // won't be blown away when the network load commits. To make that happen, w
e |
| 99 // "securely transition" the existing LocalDOMWindow to the Document that re
sults from | 98 // "securely transition" the existing LocalDOMWindow to the Document that re
sults from |
| 100 // the network load. See also SecurityContext::isSecureTransitionTo. | 99 // the network load. See also SecurityContext::isSecureTransitionTo. |
| 101 // FIXME: This is for DocumentWriter creation, not for one of Document. | 100 // FIXME: This is for DocumentWriter creation, not for one of Document. |
| 102 bool m_shouldReuseDefaultView; | 101 bool m_shouldReuseDefaultView; |
| 103 }; | 102 }; |
| 104 | 103 |
| 105 } // namespace blink | 104 } // namespace blink |
| 106 | 105 |
| 107 #endif // DocumentInit_h | 106 #endif // DocumentInit_h |
| OLD | NEW |