chromium/third_party/blink/renderer/core/html/html_picture_element.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/html/html_picture_element.h"

#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/element_traversal.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/core/html/html_image_element.h"
#include "third_party/blink/renderer/core/html/html_source_element.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/core/loader/image_loader.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"

namespace blink {

HTMLPictureElement::HTMLPictureElement(Document& document)
    :{}

void HTMLPictureElement::SourceChanged(ImageSourceChangeType change_type) {}

void HTMLPictureElement::SourceDimensionChanged() {}

void HTMLPictureElement::RemoveListenerFromSourceChildren() {}

void HTMLPictureElement::AddListenerToSourceChildren() {}

Node::InsertionNotificationRequest HTMLPictureElement::InsertedInto(
    ContainerNode& insertion_point) {}

}  // namespace blink