// Copyright 2015 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/serializers/text_offset.h" #include "third_party/blink/renderer/core/dom/text.h" namespace blink { TextOffset::TextOffset() : … { … } TextOffset::TextOffset(Text* text, int offset) : … { … } TextOffset::TextOffset(const TextOffset& other) = default; bool TextOffset::IsNull() const { … } bool TextOffset::IsNotNull() const { … } } // namespace blink