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/CustomElementRegistrationContext.h" | 34 #include "core/dom/custom/CustomElementRegistrationContext.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/PassRefPtr.h" | |
38 #include "wtf/RefPtr.h" | |
39 #include "wtf/WeakPtr.h" | 37 #include "wtf/WeakPtr.h" |
40 | 38 |
41 namespace blink { | 39 namespace blink { |
42 | 40 |
43 class Document; | 41 class Document; |
44 class LocalFrame; | 42 class LocalFrame; |
45 class HTMLImportsController; | 43 class HTMLImportsController; |
46 class Settings; | 44 class Settings; |
47 | 45 |
48 class CORE_EXPORT DocumentInit final { | 46 class CORE_EXPORT DocumentInit final { |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 // won't be blown away when the network load commits. To make that happen, w
e | 98 // won't be blown away when the network load commits. To make that happen, w
e |
101 // "securely transition" the existing LocalDOMWindow to the Document that re
sults from | 99 // "securely transition" the existing LocalDOMWindow to the Document that re
sults from |
102 // the network load. See also SecurityContext::isSecureTransitionTo. | 100 // the network load. See also SecurityContext::isSecureTransitionTo. |
103 // FIXME: This is for DocumentWriter creation, not for one of Document. | 101 // FIXME: This is for DocumentWriter creation, not for one of Document. |
104 bool m_shouldReuseDefaultView; | 102 bool m_shouldReuseDefaultView; |
105 }; | 103 }; |
106 | 104 |
107 } // namespace blink | 105 } // namespace blink |
108 | 106 |
109 #endif // DocumentInit_h | 107 #endif // DocumentInit_h |
OLD | NEW |