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

Unified Diff: content/common/gpu/client/cc_param_traits.cc

Issue 10915298: Add CCDelegatingRenderer, and corresponding IPCs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: correct base Created 8 years, 3 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: 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

Powered by Google App Engine
This is Rietveld 408576698