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

Unified Diff: sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.cpp

Issue 665613003: Remove the ability to parse HTML fragments (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
diff --git a/sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.cpp b/sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
index db9a4d43fb4d815f58c7e9039057cd7e95ebac34..3bcbfa9df32bb175cce404d4d87a2865e25fb955 100644
--- a/sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
+++ b/sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
@@ -22,16 +22,4 @@ void CustomElementMicrotaskQueueBase::trace(Visitor* visitor)
visitor->trace(m_queue);
}
-#if !defined(NDEBUG)
-void CustomElementMicrotaskQueueBase::show(unsigned indent)
-{
- for (unsigned q = 0; q < m_queue.size(); ++q) {
- if (m_queue[q])
- m_queue[q]->show(indent);
- else
- fprintf(stderr, "%*snull\n", indent, "");
- }
-}
-#endif
-
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698