blob: e3eb6e44d994adec08584db16eae760dc9d8592e [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CustomElementConnectedCallbackReaction_h
#define CustomElementConnectedCallbackReaction_h
#include "core/CoreExport.h"
#include "core/dom/custom/CustomElementReaction.h"
#include "platform/heap/Handle.h"
#include "wtf/Noncopyable.h"
namespace blink {
class CORE_EXPORT CustomElementConnectedCallbackReaction final
: public CustomElementReaction {
WTF_MAKE_NONCOPYABLE(CustomElementConnectedCallbackReaction);
public:
CustomElementConnectedCallbackReaction(CustomElementDefinition*);
private:
void invoke(Element*) override;
};
} // namespace blink
#endif // CustomElementConnectedCallbackReaction_h