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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp

Issue 2493673002: Synchronize OffscreenCanvas content with the placeholder canvas (Closed)
Patch Set: fix obsolete test 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/serialization/V8ScriptValueSerializer.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp b/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp
index 9c45b714f853d1c5e25fabb94259ccb87109fb60..aa54737138898d10a44827d23fbb66f876f7a9a9 100644
--- a/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp
@@ -278,7 +278,7 @@ bool V8ScriptValueSerializer::writeDOMObject(ScriptWrappable* wrappable,
writeTag(OffscreenCanvasTransferTag);
writeUint32(canvas->width());
writeUint32(canvas->height());
- writeUint32(canvas->getAssociatedCanvasId());
+ writeUint32(canvas->placeholderCanvasId());
writeUint32(canvas->clientId());
writeUint32(canvas->sinkId());
writeUint32(canvas->localId());

Powered by Google App Engine
This is Rietveld 408576698