chromium/third_party/blink/renderer/core/editing/commands/set_character_data_command.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/editing/commands/set_character_data_command.h"

#include "third_party/blink/renderer/core/editing/editing_utilities.h"
#include "third_party/blink/renderer/core/frame/settings.h"
#include "third_party/blink/renderer/core/layout/layout_text.h"

namespace blink {

SetCharacterDataCommand::SetCharacterDataCommand(Text* node,
                                                 unsigned offset,
                                                 unsigned count,
                                                 const String& text)
    :{}

void SetCharacterDataCommand::DoApply(EditingState*) {}

void SetCharacterDataCommand::DoUnapply() {}

void SetCharacterDataCommand::Trace(Visitor* visitor) const {}

}  // namespace blink