// Copyright 2019 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_NEW_TAB_PAGE_CHROME_COLORS_SELECTED_COLORS_INFO_H_ #define CHROME_BROWSER_NEW_TAB_PAGE_CHROME_COLORS_SELECTED_COLORS_INFO_H_ #include <stdint.h> #include "chrome/grit/generated_resources.h" #include "third_party/skia/include/core/SkColor.h" namespace chrome_colors { struct ColorInfo { … }; // List of preselected colors to show in Chrome Colors menu. This array should // always be in sync with ChromeColorsInfo in enums.xml. constexpr ColorInfo kSelectedColorsInfo[] = …; } // namespace chrome_colors #endif // CHROME_BROWSER_NEW_TAB_PAGE_CHROME_COLORS_SELECTED_COLORS_INFO_H_