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

Unified Diff: sky/engine/core/dom/custom/CustomElementMicrotaskResolutionStep.h

Issue 885713004: Remove CustomElementDescriptor. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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/CustomElementMicrotaskResolutionStep.h
diff --git a/sky/engine/core/dom/custom/CustomElementMicrotaskResolutionStep.h b/sky/engine/core/dom/custom/CustomElementMicrotaskResolutionStep.h
index b916345a38413375c91ddd08c5b49c6ff0d6e32b..6b984e78494c725e68327dfb3f0350787079c296 100644
--- a/sky/engine/core/dom/custom/CustomElementMicrotaskResolutionStep.h
+++ b/sky/engine/core/dom/custom/CustomElementMicrotaskResolutionStep.h
@@ -31,7 +31,6 @@
#ifndef SKY_ENGINE_CORE_DOM_CUSTOM_CUSTOMELEMENTMICROTASKRESOLUTIONSTEP_H_
#define SKY_ENGINE_CORE_DOM_CUSTOM_CUSTOMELEMENTMICROTASKRESOLUTIONSTEP_H_
-#include "sky/engine/core/dom/custom/CustomElementDescriptor.h"
#include "sky/engine/core/dom/custom/CustomElementMicrotaskStep.h"
#include "sky/engine/platform/heap/Handle.h"
#include "sky/engine/wtf/PassOwnPtr.h"
@@ -46,18 +45,17 @@ class Element;
class CustomElementMicrotaskResolutionStep : public CustomElementMicrotaskStep {
WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskResolutionStep);
public:
- static PassOwnPtr<CustomElementMicrotaskResolutionStep> create(PassRefPtr<CustomElementRegistrationContext>, PassRefPtr<Element>, const CustomElementDescriptor&);
+ static PassOwnPtr<CustomElementMicrotaskResolutionStep> create(PassRefPtr<CustomElementRegistrationContext>, PassRefPtr<Element>);
virtual ~CustomElementMicrotaskResolutionStep();
private:
- CustomElementMicrotaskResolutionStep(PassRefPtr<CustomElementRegistrationContext>, PassRefPtr<Element>, const CustomElementDescriptor&);
+ CustomElementMicrotaskResolutionStep(PassRefPtr<CustomElementRegistrationContext>, PassRefPtr<Element>);
virtual Result process() override;
RefPtr<CustomElementRegistrationContext> m_context;
RefPtr<Element> m_element;
- CustomElementDescriptor m_descriptor;
};
}

Powered by Google App Engine
This is Rietveld 408576698