blob: 4037551f5e876b1cd1d6ebae6091e6918a7aa8b2 [file] [log] [blame]
// Copyright 2016 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 "components/ntp_snippets/category_info.h"
namespace ntp_snippets {
CategoryInfo::CategoryInfo(const base::string16& title,
ContentSuggestionsCardLayout card_layout,
bool has_more_button,
bool show_if_empty)
: title_(title),
card_layout_(card_layout),
has_more_button_(has_more_button),
show_if_empty_(show_if_empty) {}
CategoryInfo::~CategoryInfo() = default;
} // namespace ntp_snippets