| Index: third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h
|
| diff --git a/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h b/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h
|
| index 263100de41c9c9f5e038a9c17558c8a4f2100e3f..873a7184e2a29b2bcef6aae4a4580ded5e449c52 100644
|
| --- a/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h
|
| +++ b/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h
|
| @@ -98,8 +98,8 @@ class CORE_EXPORT OffscreenCanvas final
|
| static CanvasRenderingContextFactory* getRenderingContextFactory(int);
|
|
|
| Member<CanvasRenderingContext> m_context;
|
| - int m_canvasId =
|
| - -1; // DOMNodeIds starts from 0, using -1 to indicate no associated canvas element.
|
| + int m_canvasId = -1; // DOMNodeIds starts from 0, using -1 to indicate no
|
| + // associated canvas element.
|
| IntSize m_size;
|
| bool m_isNeutered = false;
|
|
|
| @@ -111,7 +111,8 @@ class CORE_EXPORT OffscreenCanvas final
|
| std::unique_ptr<OffscreenCanvasFrameDispatcher> m_frameDispatcher;
|
| // cc::SurfaceId is broken into three integer components as this can be used
|
| // in transfer of OffscreenCanvas across threads
|
| - // If this object is not created via HTMLCanvasElement.transferControlToOffscreen(),
|
| + // If this object is not created via
|
| + // HTMLCanvasElement.transferControlToOffscreen(),
|
| // then the following members would remain as initialized zero values.
|
| uint32_t m_clientId = 0;
|
| uint32_t m_localId = 0;
|
|
|