| Index: third_party/WebKit/public/platform/WebDisplayItemList.h
|
| diff --git a/third_party/WebKit/public/platform/WebDisplayItemList.h b/third_party/WebKit/public/platform/WebDisplayItemList.h
|
| index 61fe14ac515d96da0c6e1507483b8a5277e1e7b0..6df97982d0f99ec0822750186523031f6284957f 100644
|
| --- a/third_party/WebKit/public/platform/WebDisplayItemList.h
|
| +++ b/third_party/WebKit/public/platform/WebDisplayItemList.h
|
| @@ -27,6 +27,10 @@ namespace cc {
|
| class FilterOperations;
|
| }
|
|
|
| +namespace gfx {
|
| +class ColorSpace;
|
| +}
|
| +
|
| namespace blink {
|
|
|
| // An ordered list of items representing content to be rendered (stored in
|
| @@ -69,6 +73,12 @@ class WebDisplayItemList {
|
| virtual void appendEndScrollItem() {}
|
|
|
| virtual void setIsSuitableForGpuRasterization(bool isSuitable) {}
|
| +
|
| + // Specifies the color space that the inputs of this display list were
|
| + // pre-converted into. If this is specified, then rasterization must not
|
| + // perform any color correction, and the result must be interpreted as being
|
| + // in this color space.
|
| + virtual void setImpliedColorSpace(const gfx::ColorSpace&) {}
|
| };
|
|
|
| } // namespace blink
|
|
|