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

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

Issue 1405993008: compositor-worker: plumb element id and mutable properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/WebMutable/WebCompositorMutable/g Created 5 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.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.cpp
index 3bd0390146d9043f971387b6fb751005509455e8..6909fd524deb726daedbd381c87ee9837e713a35 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.cpp
@@ -208,7 +208,7 @@ void SerializedScriptValueWriter::writeCompositorProxy(const CompositorProxy& co
{
append(CompositorProxyTag);
doWriteUint64(compositorProxy.elementId());
- doWriteUint32(compositorProxy.bitfieldsSupported());
+ doWriteUint32(compositorProxy.mutableProperties());
chrishtr 2015/11/24 16:22:50 Why mutable?
Ian Vollick 2015/11/25 18:28:44 Actually, this got missed in my rename. It should
}
void SerializedScriptValueWriter::writeFile(const File& file)

Powered by Google App Engine
This is Rietveld 408576698