blob: 0d7e2dd9fb62d89b028da243685853a57ac00baa [file] [log] [blame]
// Copyright 2014 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 "third_party/blink/renderer/core/style/applied_text_decoration.h"
namespace blink {
AppliedTextDecoration::AppliedTextDecoration(TextDecoration line,
ETextDecorationStyle style,
Color color)
: lines_(static_cast<unsigned>(line)),
style_(static_cast<unsigned>(style)),
color_(color) {}
bool AppliedTextDecoration::operator==(const AppliedTextDecoration& o) const {
return color_ == o.color_ && lines_ == o.lines_ && style_ == o.style_;
}
} // namespace blink