Cast: Add an option to turn on non-blocking IO on Windows
[chromium-blink-merge.git] / components / enhanced_bookmarks / image_record.h
blobdde32513ce7942f6b3e9b6285f4bc47371487903
1 // Copyright 2015 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.
5 #ifndef COMPONENTS_ENHANCED_BOOKMARKS_IMAGE_RECORD_H_
6 #define COMPONENTS_ENHANCED_BOOKMARKS_IMAGE_RECORD_H_
8 #include "third_party/skia/include/core/SkColor.h"
9 #include "ui/gfx/image/image.h"
10 #include "url/gurl.h"
12 namespace enhanced_bookmarks {
14 // Defines a record of a bookmark image in the ImageStore.
15 struct ImageRecord {
16 ImageRecord() : image(), url(), dominant_color(SK_ColorBLACK) {}
17 ImageRecord(const gfx::Image& image, const GURL& url, SkColor dominant_color)
18 : image(image), url(url), dominant_color(dominant_color) {}
20 // The image data.
21 gfx::Image image;
22 // The URL that hosts the image.
23 GURL url;
24 // The dominant color of the image.
25 SkColor dominant_color;
28 } // namespace enhanced_bookmarks
30 #endif // COMPONENTS_ENHANCED_BOOKMARKS_IMAGE_RECORD_H_