| Index: content/common/gpu/client/cc_param_traits.cc
|
| diff --git a/content/common/gpu/client/cc_param_traits.cc b/content/common/gpu/client/cc_param_traits.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a7587a1c5dff1b620eb49cbe57b647086d934756
|
| --- /dev/null
|
| +++ b/content/common/gpu/client/cc_param_traits.cc
|
| @@ -0,0 +1,43 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "content/common/gpu/client/cc_param_traits.h"
|
| +
|
| +namespace IPC {
|
| +
|
| +void ParamTraits<WebKit::WebCompositorFrame>::Write(Message* m,
|
| + const param_type& p) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +bool ParamTraits<WebKit::WebCompositorFrame>::Read(const Message* m,
|
| + PickleIterator* iter,
|
| + param_type* p) {
|
| + NOTIMPLEMENTED();
|
| + return true;
|
| +}
|
| +
|
| +void ParamTraits<WebKit::WebCompositorFrame>::Log(const param_type& p,
|
| + std::string* l) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void ParamTraits<WebKit::WebCompositorFrameAck>::Write(Message* m,
|
| + const param_type& p) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +bool ParamTraits<WebKit::WebCompositorFrameAck>::Read(const Message* m,
|
| + PickleIterator* iter,
|
| + param_type* p) {
|
| + NOTIMPLEMENTED();
|
| + return true;
|
| +}
|
| +
|
| +void ParamTraits<WebKit::WebCompositorFrameAck>::Log(const param_type& p,
|
| + std::string* l) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +} // namespace IPC
|
|
|