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

Side by Side Diff: Source/core/html/parser/HTMLElementStack.h

Issue 809803003: Oilpan: non-eagerly trace HTML element stack records. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 // ElementRecords keep them alive. The root node is never popped. 181 // ElementRecords keep them alive. The root node is never popped.
182 // FIXME: We don't currently require type-specific information about 182 // FIXME: We don't currently require type-specific information about
183 // these elements so we haven't yet bothered to plumb the types all the 183 // these elements so we haven't yet bothered to plumb the types all the
184 // way down through createElement, etc. 184 // way down through createElement, etc.
185 RawPtrWillBeMember<ContainerNode> m_rootNode; 185 RawPtrWillBeMember<ContainerNode> m_rootNode;
186 RawPtrWillBeMember<Element> m_headElement; 186 RawPtrWillBeMember<Element> m_headElement;
187 RawPtrWillBeMember<Element> m_bodyElement; 187 RawPtrWillBeMember<Element> m_bodyElement;
188 unsigned m_stackDepth; 188 unsigned m_stackDepth;
189 }; 189 };
190 190
191 WILL_NOT_BE_EAGERLY_TRACED_CLASS(HTMLElementStack::ElementRecord);
192
191 } // namespace blink 193 } // namespace blink
192 194
193 #endif // HTMLElementStack_h 195 #endif // HTMLElementStack_h
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698