blob: 7444ac7d751f84b167517f36940568138218ef45 [file] [log] [blame]
Connie Wan866179b2019-12-18 21:39:331// Copyright 2019 The Chromium Authors. All rights reserved.
Taylor Bergquist7fe0c802019-01-09 03:47:202// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Connie Wan866179b2019-12-18 21:39:335#include "components/tab_groups/tab_group_visual_data.h"
Bret Sepulvedaee317382019-05-09 22:04:106
Connie Wan8f0096c2019-12-21 01:19:057#include "base/strings/string16.h"
Taylor Bergquist7fe0c802019-01-09 03:47:208#include "base/strings/utf_string_conversions.h"
Connie Wan8f0096c2019-12-21 01:19:059#include "components/tab_groups/tab_group_color.h"
Taylor Bergquist7fe0c802019-01-09 03:47:2010
Connie Wan866179b2019-12-18 21:39:3311namespace tab_groups {
12
Collin Baker370e9bd42019-07-27 01:12:1213TabGroupVisualData::TabGroupVisualData() {
Bret Sepulvedab83b92832019-08-30 21:56:1114 title_ = base::ASCIIToUTF16("");
Connie Wan8f0096c2019-12-21 01:19:0515 color_ = tab_groups::TabGroupColorId::kGrey;
Taylor Bergquist7fe0c802019-01-09 03:47:2016}
Collin Bakere99ee632019-08-02 01:09:2917
Connie Wan8f0096c2019-12-21 01:19:0518TabGroupVisualData::TabGroupVisualData(base::string16 title,
19 tab_groups::TabGroupColorId color)
Collin Bakere99ee632019-08-02 01:09:2920 : title_(title), color_(color) {}
Connie Wan866179b2019-12-18 21:39:3321
22} // namespace tab_groups