| Index: third_party/WebKit/Source/platform/graphics/GraphicsContext.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsContext.h b/third_party/WebKit/Source/platform/graphics/GraphicsContext.h
|
| index 372e6fdeb3178800a65eb6dae3a268c0d03652d5..3c164c746c9a52cb2cf0974cf5c6f17fd1b87ae9 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/GraphicsContext.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsContext.h
|
| @@ -70,11 +70,9 @@ class PLATFORM_EXPORT GraphicsContext {
|
| // the context from performance tests.
|
| };
|
|
|
| - explicit GraphicsContext(
|
| - PaintController&,
|
| - DisabledMode = NothingDisabled,
|
| - SkMetaData* = 0,
|
| - ColorBehavior = ColorBehavior::transformToGlobalTarget());
|
| + explicit GraphicsContext(PaintController&,
|
| + DisabledMode = NothingDisabled,
|
| + SkMetaData* = 0);
|
|
|
| ~GraphicsContext();
|
|
|
| @@ -82,7 +80,6 @@ class PLATFORM_EXPORT GraphicsContext {
|
| const PaintCanvas* canvas() const { return m_canvas; }
|
|
|
| PaintController& getPaintController() { return m_paintController; }
|
| - const ColorBehavior& getColorBehavior() const { return m_colorBehavior; }
|
|
|
| bool contextDisabled() const { return m_disabledState; }
|
|
|
| @@ -436,8 +433,6 @@ class PLATFORM_EXPORT GraphicsContext {
|
|
|
| SkMetaData m_metaData;
|
|
|
| - const ColorBehavior m_colorBehavior;
|
| -
|
| #if DCHECK_IS_ON()
|
| int m_layerCount;
|
| bool m_disableDestructionChecks;
|
|
|