| Index: third_party/WebKit/Source/platform/graphics/GraphicsScreen.h | 
| diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsScreen.h b/third_party/WebKit/Source/platform/graphics/GraphicsScreen.h | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..00c5a2bfc05760e7f62aa64905ae3467b55ae609 | 
| --- /dev/null | 
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsScreen.h | 
| @@ -0,0 +1,26 @@ | 
| +// Copyright 2015 The Chromium Authors. All rights reserved. | 
| +// Use of this source code is governed by a BSD-style license that can be | 
| +// found in the LICENSE file. | 
| + | 
| +#ifndef GraphicsScreen_h | 
| +#define GraphicsScreen_h | 
| + | 
| +#include "platform/PlatformExport.h" | 
| +#include "wtf/PassRefPtr.h" | 
| + | 
| +namespace blink { | 
| + | 
| +class ColorSpaceProfile; | 
| + | 
| +PLATFORM_EXPORT int64_t setCurrentScreenId(int64_t); | 
| +PLATFORM_EXPORT int64_t currentScreenId(); | 
| + | 
| +PLATFORM_EXPORT PassRefPtr<ColorSpaceProfile> screenColorProfile(int64_t); | 
| +PLATFORM_EXPORT void setScreenColorProfile(int64_t, const char* profile, size_t); | 
| +PLATFORM_EXPORT void removeScreenColorProfile(int64_t); | 
| + | 
| +PLATFORM_EXPORT bool imageColorProfilesEnabled(); | 
| + | 
| +} // namespace blink | 
| + | 
| +#endif // GraphicsScreen_h | 
|  |