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

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

Issue 2379653006: Replaced cc::SurfaceId::nonce_ with base::UnguessableToken (Closed)
Patch Set: Changed SurfaceManager::kRootSurfaceId to a private field to avoid static initialization 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 db70002b1df5b0f10067fcdb1355e95a28abfcb1..71a88df72da36c100b4c377c54dd397e8bf4c1bc 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
@@ -167,7 +167,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);
@@ -643,7 +644,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>*);
« no previous file with comments | « services/ui/ws/frame_generator_unittest.cc ('k') | third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698