// Copyright 2016 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/relocatable_position.h" #include "third_party/blink/renderer/platform/heap/garbage_collected.h" namespace blink { RelocatablePosition::RelocatablePosition(const Position& position) : … { … } void RelocatablePosition::SetPosition(const Position& position) { … } Position RelocatablePosition::GetPosition() const { … } void RelocatablePosition::Trace(Visitor* visitor) const { … } } // namespace blink