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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.cpp

Issue 1887183002: Remove OILPAN from core/dom/custom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.cpp
index 2f51ffe4162887c2bf49bd031b1ef98bfb27f657..4e008749fbe4931c67e0bd562673e1c5210a202f 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.cpp
@@ -38,18 +38,8 @@
namespace blink {
-CustomElementMicrotaskImportStep* CustomElementMicrotaskImportStep::create(HTMLImportChild* import)
-{
- return new CustomElementMicrotaskImportStep(import);
-}
-
CustomElementMicrotaskImportStep::CustomElementMicrotaskImportStep(HTMLImportChild* import)
-#if ENABLE(OILPAN)
: m_import(import)
-#else
- : m_import(import->weakPtr())
- , m_weakFactory(this)
-#endif
, m_queue(import->loader()->microtaskQueue())
{
}

Powered by Google App Engine
This is Rietveld 408576698