| Index: ui/gfx/icc_profile.cc
|
| diff --git a/ui/gfx/icc_profile.cc b/ui/gfx/icc_profile.cc
|
| index a8d643d3bf903863c0f076f3cfe4134f8ef393ee..bdda5a3c25d44760283babab13f2c5d689f40e7d 100644
|
| --- a/ui/gfx/icc_profile.cc
|
| +++ b/ui/gfx/icc_profile.cc
|
| @@ -104,6 +104,12 @@ ICCProfile ICCProfile::FromDataWithId(const void* data,
|
| return icc_profile;
|
| }
|
|
|
| +ICCProfile ICCProfile::CreateSRGB() {
|
| + ICCProfile result;
|
| + ColorSpace::CreateSRGB().GetICCProfile(&result);
|
| + return result;
|
| +}
|
| +
|
| #if !defined(OS_WIN) && !defined(OS_MACOSX) && !defined(USE_X11)
|
| // static
|
| ICCProfile ICCProfile::FromBestMonitor() {
|
|
|