| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BitmapImageMetrics_h | 5 #ifndef BitmapImageMetrics_h |
| 6 #define BitmapImageMetrics_h | 6 #define BitmapImageMetrics_h |
| 7 | 7 |
| 8 #include "platform/PlatformExport.h" | 8 #include "platform/PlatformExport.h" |
| 9 #include "platform/graphics/ImageOrientation.h" | 9 #include "platform/graphics/ImageOrientation.h" |
| 10 #include "third_party/skia/include/core/SkColorSpace.h" | 10 #include "third_party/skia/include/core/SkColorSpace.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 ImageBMP = 6, | 27 ImageBMP = 6, |
| 28 DecodedImageTypeEnumEnd = ImageBMP + 1 | 28 DecodedImageTypeEnumEnd = ImageBMP + 1 |
| 29 }; | 29 }; |
| 30 | 30 |
| 31 enum Gamma { | 31 enum Gamma { |
| 32 // Values synced with 'Gamma' in src/tools/metrics/histograms/histograms
.xml | 32 // Values synced with 'Gamma' in src/tools/metrics/histograms/histograms
.xml |
| 33 GammaLinear = 0, | 33 GammaLinear = 0, |
| 34 GammaSRGB = 1, | 34 GammaSRGB = 1, |
| 35 Gamma2Dot2 = 2, | 35 Gamma2Dot2 = 2, |
| 36 GammaNonStandard = 3, | 36 GammaNonStandard = 3, |
| 37 GammaEmpty = 4, | 37 GammaNull = 4, |
| 38 GammaNull = 5, | 38 GammaFail = 5, |
| 39 GammaFail = 6, | |
| 40 GammaEnd = GammaFail + 1, | 39 GammaEnd = GammaFail + 1, |
| 41 }; | 40 }; |
| 42 | 41 |
| 43 static void countDecodedImageType(const String& type); | 42 static void countDecodedImageType(const String& type); |
| 44 static void countImageOrientation(const ImageOrientationEnum); | 43 static void countImageOrientation(const ImageOrientationEnum); |
| 45 static void countGamma(SkColorSpace*); | 44 static void countGamma(SkColorSpace*); |
| 46 }; | 45 }; |
| 47 | 46 |
| 48 } // namespace blink | 47 } // namespace blink |
| 49 | 48 |
| 50 #endif | 49 #endif |
| OLD | NEW |