Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h

Issue 2379653006: Replaced cc::SurfaceId::nonce_ with base::UnguessableToken (Closed)
Patch Set: Added static cast to LocalFrameId::hash() to avoid warnings when compiled on Windows Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h b/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
index e9d10283eb9d4c259a030877582d7d24120d39ef..77af59d9497e2f5fa0850ec242c53005f061f746 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
@@ -168,7 +168,8 @@ class CORE_EXPORT SerializedScriptValueWriter {
uint32_t clientId,
uint32_t sinkId,
uint32_t localId,
- uint64_t nonce);
+ uint64_t nonceHigh,
+ uint64_t nonceLow);
void writeTransferredSharedArrayBuffer(uint32_t index);
void writeObjectReference(uint32_t reference);
void writeObject(uint32_t numProperties);
@@ -644,7 +645,8 @@ class CORE_EXPORT ScriptValueDeserializer {
uint32_t clientId,
uint32_t sinkId,
uint32_t localId,
- uint64_t nonce,
+ uint64_t nonceHigh,
+ uint64_t nonceLow,
v8::Local<v8::Value>*);
bool tryGetTransferredSharedArrayBuffer(uint32_t index,
v8::Local<v8::Value>*);

Powered by Google App Engine
This is Rietveld 408576698