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

Unified Diff: sky/engine/core/dom/custom/CustomElementMicrotaskRunQueue.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/CustomElementMicrotaskRunQueue.cpp
diff --git a/sky/engine/core/dom/custom/CustomElementMicrotaskRunQueue.cpp b/sky/engine/core/dom/custom/CustomElementMicrotaskRunQueue.cpp
index 8f8fbe54b132f828d6c6448db51b6e5fe21de739..f2861cef4c80b3ab68fcbd217e25785cfeb1c8c8 100644
--- a/sky/engine/core/dom/custom/CustomElementMicrotaskRunQueue.cpp
+++ b/sky/engine/core/dom/custom/CustomElementMicrotaskRunQueue.cpp
@@ -66,14 +66,4 @@ bool CustomElementMicrotaskRunQueue::isEmpty() const
return m_syncQueue->isEmpty() && m_asyncQueue->isEmpty();
}
-#if !defined(NDEBUG)
-void CustomElementMicrotaskRunQueue::show(unsigned indent)
-{
- fprintf(stderr, "Sync:\n");
- m_syncQueue->show(indent);
- fprintf(stderr, "Async:\n");
- m_asyncQueue->show(indent);
-}
-#endif
-
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698