// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_WEBUI_WELCOME_BOOKMARK_ITEM_H_ #define CHROME_BROWSER_UI_WEBUI_WELCOME_BOOKMARK_ITEM_H_ #include <stddef.h> #include <string> #include "base/containers/span.h" #include "base/values.h" namespace welcome { struct BookmarkItem { … }; base::Value::List BookmarkItemsToListValue( base::span<const BookmarkItem> items); } // namespace welcome #endif // CHROME_BROWSER_UI_WEBUI_WELCOME_BOOKMARK_ITEM_H_