1 // Copyright 2019 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "ui/color/color_set.h"
6 
7 namespace ui {
8 
ColorSet(ColorSetId id,ColorMap && colors)9 ColorSet::ColorSet(ColorSetId id, ColorMap&& colors)
10     : id(id), colors(std::move(colors)) {}
11 
12 ColorSet::ColorSet(ColorSet&&) noexcept = default;
13 
14 ColorSet& ColorSet::operator=(ColorSet&&) noexcept = default;
15 
16 ColorSet::~ColorSet() = default;
17 
18 }  // namespace ui
19