1// Copyright 2013 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#ifndef CONTENT_PUBLIC_COMMON_COLOR_SUGGESTION_H_
6#define CONTENT_PUBLIC_COMMON_COLOR_SUGGESTION_H_
7
8#include "base/strings/string16.h"
9#include "content/common/content_export.h"
10#include "third_party/skia/include/core/SkColor.h"
11
12namespace blink {
13struct WebColorSuggestion;
14}
15
16namespace content {
17
18// Container for information about datalist suggestion for the color input
19// control.
20struct CONTENT_EXPORT ColorSuggestion {
21  ColorSuggestion() {}
22  explicit ColorSuggestion(const blink::WebColorSuggestion& suggestion);
23
24  SkColor color;
25  base::string16 label;
26};
27
28}  // namespace content
29
30#endif  // CONTENT_PUBLIC_COMMON_COLOR_SUGGESTION_H_
31