Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1361)

Side by Side Diff: Source/core/dom/Document.h

Issue 517043003: Move Frame to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Back out non-Oilpan experiment + tidy up by adding frame() ref accessors Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698