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

Unified Diff: Source/core/dom/custom/CustomElementMicrotaskRunQueue.cpp

Issue 928103002: Remove some unused functions in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: git cl try 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/custom/CustomElementMicrotaskRunQueue.h ('k') | Source/core/editing/EditCommand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/custom/CustomElementMicrotaskRunQueue.cpp
diff --git a/Source/core/dom/custom/CustomElementMicrotaskRunQueue.cpp b/Source/core/dom/custom/CustomElementMicrotaskRunQueue.cpp
index 27fabcf5d134e648da1406299e9b1601cd2c3d74..a7e6d2642870572efa42492fc3a82f71d1dff259 100644
--- a/Source/core/dom/custom/CustomElementMicrotaskRunQueue.cpp
+++ b/Source/core/dom/custom/CustomElementMicrotaskRunQueue.cpp
@@ -71,14 +71,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
« no previous file with comments | « Source/core/dom/custom/CustomElementMicrotaskRunQueue.h ('k') | Source/core/editing/EditCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698