blob: b50fd33072b4d51dca4278f49c353e37a31bf62c [file] [log] [blame]
// Copyright 2015 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 SKY_ENGINE_CORE_DOM_CUSTOM_NEW_CUSTOM_ELEMENT_H_
#define SKY_ENGINE_CORE_DOM_CUSTOM_NEW_CUSTOM_ELEMENT_H_
#include "sky/engine/wtf/text/AtomicString.h"
namespace blink {
class Document;
class Element;
class CustomElement {
public:
static void AttributeDidChange(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
static void DidAttach(Element*, Document&);
static void DidDetach(Element*, Document&);
private:
CustomElement();
};
} // namespace blink
#endif // SKY_ENGINE_CORE_DOM_CUSTOM_NEW_CUSTOM_ELEMENT_H_