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

Side by Side Diff: Source/core/html/imports/HTMLImportChild.cpp

Issue 932403002: InlinedVisitor: Migrate html to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 HTMLImport::showThis(); 214 HTMLImport::showThis();
215 fprintf(stderr, " loader=%p first=%d, step=%p sync=%s url=%s", 215 fprintf(stderr, " loader=%p first=%d, step=%p sync=%s url=%s",
216 m_loader.get(), 216 m_loader.get(),
217 isFirst, 217 isFirst,
218 m_customElementMicrotaskStep.get(), 218 m_customElementMicrotaskStep.get(),
219 isSync() ? "Y" : "N", 219 isSync() ? "Y" : "N",
220 url().string().utf8().data()); 220 url().string().utf8().data());
221 } 221 }
222 #endif 222 #endif
223 223
224 void HTMLImportChild::trace(Visitor* visitor) 224 DEFINE_TRACE(HTMLImportChild)
225 { 225 {
226 visitor->trace(m_customElementMicrotaskStep); 226 visitor->trace(m_customElementMicrotaskStep);
227 visitor->trace(m_loader); 227 visitor->trace(m_loader);
228 visitor->trace(m_client); 228 visitor->trace(m_client);
229 HTMLImport::trace(visitor); 229 HTMLImport::trace(visitor);
230 } 230 }
231 231
232 } // namespace blink 232 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/html/imports/HTMLImportChild.h ('k') | Source/core/html/imports/HTMLImportChildClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698