| 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) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1154 DocumentLifecycle m_lifecycle; | 1154 DocumentLifecycle m_lifecycle; |
| 1155 | 1155 |
| 1156 bool m_hasNodesWithPlaceholderStyle; | 1156 bool m_hasNodesWithPlaceholderStyle; |
| 1157 bool m_evaluateMediaQueriesOnStyleRecalc; | 1157 bool m_evaluateMediaQueriesOnStyleRecalc; |
| 1158 | 1158 |
| 1159 // If we do ignore the pending stylesheet count, then we need to add a boole
an | 1159 // If we do ignore the pending stylesheet count, then we need to add a boole
an |
| 1160 // to track that this happened so that we can do a full repaint when the sty
lesheets | 1160 // to track that this happened so that we can do a full repaint when the sty
lesheets |
| 1161 // do eventually load. | 1161 // do eventually load. |
| 1162 PendingSheetLayout m_pendingSheetLayout; | 1162 PendingSheetLayout m_pendingSheetLayout; |
| 1163 | 1163 |
| 1164 LocalFrame* m_frame; | 1164 RawPtrWillBeMember<LocalFrame> m_frame; |
| 1165 RawPtrWillBeMember<LocalDOMWindow> m_domWindow; | 1165 RawPtrWillBeMember<LocalDOMWindow> m_domWindow; |
| 1166 // FIXME: oilpan: when we get rid of the transition types change the | 1166 // FIXME: oilpan: when we get rid of the transition types change the |
| 1167 // HTMLImportsController to not be a DocumentSupplement since it is | 1167 // HTMLImportsController to not be a DocumentSupplement since it is |
| 1168 // redundant with oilpan. | 1168 // redundant with oilpan. |
| 1169 RawPtrWillBeMember<HTMLImportsController> m_importsController; | 1169 RawPtrWillBeMember<HTMLImportsController> m_importsController; |
| 1170 | 1170 |
| 1171 RefPtrWillBeMember<ResourceFetcher> m_fetcher; | 1171 RefPtrWillBeMember<ResourceFetcher> m_fetcher; |
| 1172 RefPtrWillBeMember<DocumentParser> m_parser; | 1172 RefPtrWillBeMember<DocumentParser> m_parser; |
| 1173 unsigned m_activeParserCount; | 1173 unsigned m_activeParserCount; |
| 1174 RefPtrWillBeMember<ContextFeatures> m_contextFeatures; | 1174 RefPtrWillBeMember<ContextFeatures> m_contextFeatures; |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1410 Node* eventTargetNodeForDocument(Document*); | 1410 Node* eventTargetNodeForDocument(Document*); |
| 1411 | 1411 |
| 1412 } // namespace blink | 1412 } // namespace blink |
| 1413 | 1413 |
| 1414 #ifndef NDEBUG | 1414 #ifndef NDEBUG |
| 1415 // Outside the WebCore namespace for ease of invocation from gdb. | 1415 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1416 void showLiveDocumentInstances(); | 1416 void showLiveDocumentInstances(); |
| 1417 #endif | 1417 #endif |
| 1418 | 1418 |
| 1419 #endif // Document_h | 1419 #endif // Document_h |
| OLD | NEW |