blob: 0fb0d91307a1dae7fdc016d7e120cb6ed3b9b65d [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "core/editing/markers/CompositionMarker.h"
namespace blink {
CompositionMarker::CompositionMarker(unsigned start_offset,
unsigned end_offset,
Color underline_color,
Thickness thickness,
Color background_color)
: StyleableMarker(start_offset,
end_offset,
underline_color,
thickness,
background_color) {}
DocumentMarker::MarkerType CompositionMarker::GetType() const {
return DocumentMarker::kComposition;
}
} // namespace blink