chromium/third_party/blink/renderer/core/dom/whitespace_attacher.cc

// Copyright 2017 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/dom/whitespace_attacher.h"

#include "third_party/blink/renderer/core/dom/element.h"
#include "third_party/blink/renderer/core/dom/layout_tree_builder.h"
#include "third_party/blink/renderer/core/dom/text.h"
#include "third_party/blink/renderer/core/layout/layout_text.h"
#include "third_party/blink/renderer/platform/bindings/script_forbidden_scope.h"

namespace blink {

WhitespaceAttacher::~WhitespaceAttacher() {}

void WhitespaceAttacher::DidReattach(Node* node, LayoutObject* prev_in_flow) {}

void WhitespaceAttacher::DidReattachText(Text* text) {}

void WhitespaceAttacher::DidReattachElement(Element* element,
                                            LayoutObject* prev_in_flow) {}

void WhitespaceAttacher::DidVisitText(Text* text) {}

void WhitespaceAttacher::DidVisitElement(Element* element) {}

void WhitespaceAttacher::ReattachWhitespaceSiblings(
    LayoutObject* previous_in_flow) {}

void WhitespaceAttacher::ForceLastTextNodeNeedsReattach() {}

void WhitespaceAttacher::UpdateLastTextNodeFromDisplayContents() {}

}  // namespace blink