OLD | NEW |
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 Loading... |
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 |
OLD | NEW |