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

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

Issue 2292133002: [compositor-worker] root scrolling layer is associated with document scrolling element
Patch Set: Use document instead of documentElement() Created 3 years, 10 months 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 377090f2126a81bf6263e72111cff6873a89157f..13c9abd30426cb6bb1e70235493ee1397d50d659 100644
--- a/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp
@@ -173,6 +173,7 @@ bool V8ScriptValueSerializer::writeDOMObject(ScriptWrappable* wrappable,
// does not use this approach (and this feature is unshipped).
writeTag(CompositorProxyTag);
writeUint64(proxy->elementId());
+ writeUint64(proxy->scrollingNodeId());
writeUint32(proxy->compositorMutableProperties());
return true;
}

Powered by Google App Engine
This is Rietveld 408576698