| Index: third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.cpp b/third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.cpp
|
| index 32204cf95bc0171c5e8dd8cb31b6f30b823703c3..ee6b2191a8577bd2d18756c0c036efb50c2da040 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.cpp
|
| @@ -35,11 +35,15 @@ OffscreenCanvasFrameDispatcherImpl::OffscreenCanvasFrameDispatcherImpl(
|
| uint32_t clientId,
|
| uint32_t sinkId,
|
| uint32_t localId,
|
| - uint64_t nonce,
|
| + uint64_t nonceHigh,
|
| + uint64_t nonceLow,
|
| int width,
|
| int height)
|
| - : m_surfaceId(cc::FrameSinkId(clientId, sinkId),
|
| - cc::LocalFrameId(localId, nonce)),
|
| + : m_surfaceId(
|
| + cc::FrameSinkId(clientId, sinkId),
|
| + cc::LocalFrameId(
|
| + localId,
|
| + base::UnguessableToken::Deserialize(nonceHigh, nonceLow))),
|
| m_width(width),
|
| m_height(height),
|
| m_nextResourceId(1u),
|
|
|