| 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 48fe6208447da6b51fbdc0c260d5d4d5afe3e3fe..fc21c7149acdeaf4889cf7232d287a57e59b42e6 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.cpp
|
| @@ -29,11 +29,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),
|
|
|