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

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

Issue 789253003: Remove dead code (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years 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: Source/core/dom/custom/CustomElementObserver.cpp
diff --git a/Source/core/dom/custom/CustomElementObserver.cpp b/Source/core/dom/custom/CustomElementObserver.cpp
index ad0ac67b0fb74ab27e099dedaf3cc0d76823f06c..86d7de008f669fdb37c26b7d9a947d79b3c0b127 100644
--- a/Source/core/dom/custom/CustomElementObserver.cpp
+++ b/Source/core/dom/custom/CustomElementObserver.cpp
@@ -45,14 +45,6 @@ static ElementObserverMap& elementObservers()
return *map;
}
-void CustomElementObserver::notifyElementDidFinishParsingChildren(Element* element)
-{
- ElementObserverMap::iterator it = elementObservers().find(element);
- if (it == elementObservers().end())
- return;
- it->value->elementDidFinishParsingChildren(element);
-}
-
void CustomElementObserver::notifyElementWasDestroyed(Element* element)
{
ElementObserverMap::iterator it = elementObservers().find(element);
« no previous file with comments | « Source/core/dom/custom/CustomElementObserver.h ('k') | Source/core/dom/custom/CustomElementUpgradeCandidateMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698