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

Side by Side Diff: Source/core/dom/DocumentOrderedMap.cpp

Issue 403333002: [oilpan]: Remove support for tracing off-heap hashmaps. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add GC_PLUGIN_IGNORE Created 6 years, 5 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 | « Source/core/dom/DocumentMarkerController.cpp ('k') | Source/core/dom/ElementDataCache.cpp » ('j') | 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) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 return get<keyMatchesLowercasedMapName>(key, scope); 174 return get<keyMatchesLowercasedMapName>(key, scope);
175 } 175 }
176 176
177 Element* DocumentOrderedMap::getElementByLabelForAttribute(StringImpl* key, cons t TreeScope* scope) const 177 Element* DocumentOrderedMap::getElementByLabelForAttribute(StringImpl* key, cons t TreeScope* scope) const
178 { 178 {
179 return get<keyMatchesLabelForAttribute>(key, scope); 179 return get<keyMatchesLabelForAttribute>(key, scope);
180 } 180 }
181 181
182 void DocumentOrderedMap::trace(Visitor* visitor) 182 void DocumentOrderedMap::trace(Visitor* visitor)
183 { 183 {
184 #if ENABLE(OILPAN)
184 visitor->trace(m_map); 185 visitor->trace(m_map);
186 #endif
185 } 187 }
186 188
187 void DocumentOrderedMap::MapEntry::trace(Visitor* visitor) 189 void DocumentOrderedMap::MapEntry::trace(Visitor* visitor)
188 { 190 {
189 visitor->trace(element); 191 visitor->trace(element);
190 #if ENABLE(OILPAN) 192 #if ENABLE(OILPAN)
191 visitor->trace(orderedList); 193 visitor->trace(orderedList);
192 #endif 194 #endif
193 } 195 }
194 196
195 } // namespace blink 197 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/dom/DocumentMarkerController.cpp ('k') | Source/core/dom/ElementDataCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698