blob: 9b58e2944d0bb4436c2eb363ca509a177178dd94 [file] [log] [blame]
// Copyright 2014 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 THIRD_PARTY_BLINK_RENDERER_CORE_HTML_HTML_PICTURE_ELEMENT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_HTML_PICTURE_ELEMENT_H_
#include "third_party/blink/renderer/core/html/html_element.h"
namespace blink {
class HTMLPictureElement final : public HTMLElement {
DEFINE_WRAPPERTYPEINFO();
public:
DECLARE_NODE_FACTORY(HTMLPictureElement);
explicit HTMLPictureElement(Document&);
void SourceOrMediaChanged();
void RemoveListenerFromSourceChildren();
void AddListenerToSourceChildren();
private:
InsertionNotificationRequest InsertedInto(ContainerNode&) override;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_HTML_HTML_PICTURE_ELEMENT_H_