Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: components/wallpaper/wallpaper_color_extraction_result.h

Issue 2943333003: Extracting more than one wallpaper prominent color (Closed)
Patch Set: UMA Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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 COMPONENTS_WALLPAPER_WALLPAPER_COLOR_EXTRACTION_RESULT_H_
6 #define COMPONENTS_WALLPAPER_WALLPAPER_COLOR_EXTRACTION_RESULT_H_
7
8 namespace wallpaper {
9
10 // This enum is used to back a histogram, and should therefore be treated as
11 // append-only.
12 enum WallpaperColorExtractionResult {
13 RESULT_DARK_VIBRANT_TRANSPARENT = 0,
14 RESULT_DARK_VIBRANT_OPAQUE,
15 RESULT_NORMAL_VIBRANT_TRANSPARENT,
16 RESULT_NORMAL_VIBRANT_OPAQUE,
17 RESULT_LIGHT_VIBRANT_TRANSPARENT,
18 RESULT_LIGHT_VIBRANT_OPAQUE,
19 RESULT_DARK_MUTED_TRANSPARENT,
20 RESULT_DARK_MUTED_OPAQUE,
21 RESULT_NORMAL_MUTED_TRANSPARENT,
22 RESULT_NORMAL_MUTED_OPAQUE,
23 RESULT_LIGHT_MUTED_TRANSPARENT,
24 RESULT_LIGHT_MUTED_OPAQUE,
25 NUM_COLOR_EXTRACTION_RESULTS,
26 };
27
28 } // namespace wallpaper
29
30 #endif // COMPONENTS_WALLPAPER_WALLPAPER_COLOR_EXTRACTION_RESULT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698