diff options
Diffstat (limited to 'Source/WebKit2/Shared/qt/LayerTreeContextQt.cpp')
-rw-r--r-- | Source/WebKit2/Shared/qt/LayerTreeContextQt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebKit2/Shared/qt/LayerTreeContextQt.cpp b/Source/WebKit2/Shared/qt/LayerTreeContextQt.cpp index d37d79cb2..00ea8735f 100644 --- a/Source/WebKit2/Shared/qt/LayerTreeContextQt.cpp +++ b/Source/WebKit2/Shared/qt/LayerTreeContextQt.cpp @@ -40,9 +40,9 @@ LayerTreeContext::~LayerTreeContext() { } -void LayerTreeContext::encode(CoreIPC::ArgumentEncoder* encoder) const +void LayerTreeContext::encode(CoreIPC::ArgumentEncoder& encoder) const { - encoder->encode(webLayerID); + encoder.encode(webLayerID); } bool LayerTreeContext::decode(CoreIPC::ArgumentDecoder* decoder, LayerTreeContext& context) |